-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "react-transition-manager",
"version": "1.3.1",
"description": "A robust transition component for React projects",
"main": "lib/index.js",
"scripts": {
"compile": "babel -d ./lib ./src",
"test": "mocha --compilers js:babel/register",
"pages": "browserify -o demos/index.js demos/index.jsx",
"prepublish": "npm run compile"
},
"browserify": {
"transform": [
"babelify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/collingo/react-transition-manager.git"
},
"keywords": [
"react-component"
],
"author": "Nick Collings",
"license": "MIT",
"bugs": {
"url": "https://github.com/collingo/react-transition-manager/issues"
},
"homepage": "https://github.com/collingo/react-transition-manager",
"dependencies": {
"classnames": "^2.1.2",
"lodash": "^3.9.3",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel": "^5.8.38",
"babelify": "^6.4.0",
"browserify": "^10.2.6",
"chai": "^3.0.0",
"mocha": "^2.2.5",
"proxyquire": "^1.5.0",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
}
}