-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-star-wars-crawl",
"version": "2.0.0",
"description": "A composable component that recreates the Star Wars opening crawl",
"main": "./lib/index.js",
"jsnext:main": "./es/index.js",
"scripts": {
"test": "mocha --require ignore-styles --compilers js:babel-register ./src/**/*.spec.js",
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib && cp ./src/index.css ./lib/index.css",
"clean": "rimraf dist lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdubrock/react-star-wars-crawl.git"
},
"keywords": [
"react",
"star",
"wars",
"crawl"
],
"author": "Russ DuBrock",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdubrock/react-star-wars-crawl/issues"
},
"homepage": "https://github.com/rdubrock/react-star-wars-crawl#readme",
"dependencies": {
"react": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-no-commonjs": "0.0.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"ignore-styles": "^5.0.1",
"mocha": "^3.4.2",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"webpack": "^2.5.1"
},
"npmName": "react-star-wars-crawl",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}