-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 994 Bytes
/
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
{
"name": "join-transition",
"version": "1.0.15",
"description": "React component for transitioning values and sets of values",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"author": "Paul Dechov (paul@two-n.com)",
"license": "MIT",
"dependencies": {
"d3-interpolate": "1",
"d3-transition": "1",
"react": "15"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"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",
"react-dom": "15"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-react-jsx",
"transform-object-rest-spread"
]
}
}