-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "hawsehole",
"version": "0.3.6",
"description": "React component for navigation and transitions among named anchors",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "babel src -d dist",
"watch": "babel -w src -d dist",
"build-example": "browserify -t babelify ./example/main.js > ./example/build.js",
"prepublish": "npm run build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/two-n/hawsehole.git"
},
"homepage": "https://github.com/two-n/hawsehole",
"bugs": "https://github.com/two-n/hawsehole/issues",
"dependencies": {
"d3-array": "^1.1.1",
"d3-interpolate": "^1.1.4",
"d3-selection": "^1.0.5",
"d3-timer": "^1.0.5",
"d3-transition": "^1.0.4",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "15"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-react-jsx",
"transform-object-rest-spread",
"transform-class-properties"
]
}
}