-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "fader",
"version": "0.0.1",
"description": "fade in and out components",
"main": "lib/fader.js",
"scripts": {
"start": "webpack-dev-server --config ./example/server.config.js --hot --port 8881",
"test": "mocha --opts ./mocha.opts; eslint ./src/ --ext .jsx,.js --global require,exports:true",
"compile": "babel src --stage 0 --out-dir lib;",
"prepublish": "babel src --stage 0 --out-dir lib;",
"example": "webpack --config ./example/example.config.js"
},
"repository": {
"type": "git",
"url": "git repo"
},
"keywords": [],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "issue page"
},
"homepage": "homepage",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"expect": "^1.8.0",
"legit-tests": "^0.4.1",
"mocha": "^2.2.5",
"mocha-babel": "^3.0.0",
"react-hot-loader": "^1.3.0",
"sinon": "^1.16.1",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"react": "^0.13.3"
}
}