forked from tleunen/react-gist
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "react-gist",
"version": "1.2.2",
"description": "Github Gist React component",
"main": "lib/index.js",
"module": "es/index.js",
"types": "types",
"files": [
"types/index.d.ts",
"lib",
"es"
],
"repository": {
"type": "git",
"url": "git://github.com/tleunen/react-gist.git"
},
"bugs": {
"url": "https://github.com/tleunen/react-gist/issues"
},
"homepage": "https://github.com/tleunen/react-gist",
"keywords": [
"react",
"react-component",
"gist",
"github",
"iframe"
],
"author": {
"name": "Tommy Leunen",
"email": "[email protected]",
"url": "http://tommyleunen.com/"
},
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"nwb": "^0.20.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0-rc || ^16.0.0-rc"
},
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
}
}