forked from plouc/nivo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "nivo",
"version": "2.0.0",
"author": {
"name": "Raphaël Benitte",
"url": "https://github.com/plouc"
},
"keywords": [],
"dependencies": {
"d3": "3.5.16",
"invariant": "2.2.1",
"lodash": "4.11.1",
"react-dimensions": "1.0.2",
"react-motion": "0.4.3"
},
"devDependencies": {
"ava": "0.14.0",
"babel-cli": "6.7.5",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"expect": "1.18.0",
"karma": "0.13.22",
"karma-chrome-launcher": "0.2.3",
"karma-mocha": "0.2.2",
"karma-mocha-reporter": "2.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"mocha": "2.4.5",
"react": "15.0.1",
"react-dom": "15.0.1",
"webpack": "1.13.0"
},
"peerDependencies": {
"react": "^15.0.1"
},
"main": "lib",
"scripts": {
"watch": "babel src --watch --out-dir lib",
"watch-test": "ava --watch",
"test": "npm run test-unit && npm run test-func",
"test-unit": "ava",
"test-func": "karma start"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"tap": false,
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}