-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
74 lines (74 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-transitions",
"author": "szchenghuang <[email protected]>",
"version": "1.0.0",
"description": "A collection of animated transitions when React components enter or leave the DOM.",
"main": "index.js",
"keywords": [
"react",
"css",
"animation",
"transition"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/szchenghuang/react-transitions/issues"
},
"homepage": "https://github.com/szchenghuang/react-transitions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/szchenghuang/react-transitions.git"
},
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"pretest": "npm run lint",
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"prebuild:example": "rm -rf docs && mkdir docs",
"build:example": "./node_modules/.bin/webpack --config ./example/webpack.config.js",
"prebuild": "npm run test && rm -rf dist && mkdir dist",
"build": "./node_modules/.bin/babel ./src --out-dir ./dist && cp ./src/animations.css ./dist/.",
"prebuild:fast": "rm -rf dist && mkdir dist",
"build:fast": "./node_modules/.bin/babel ./src --out-dir ./dist && cp ./src/animations.css ./dist/."
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.1.18",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-google": "^0.6.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.4.5",
"jsdom-global": "^2.1.0",
"json-loader": "^0.5.4",
"mocha": "^3.0.1",
"postcss": "^5.1.2",
"postcss-loader": "^0.11.1",
"react-addons-test-utils": "^15.3.1",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"dependencies": {
"prop-types": "^15.5.8",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-transition-group": "^1.1.3"
}
}