forked from nicolasdelfino/react-metro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.05 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
{
"name": "react-metro",
"version": "0.0.0-development",
"title": "react-metro",
"description": "A tiny configurable wrapper for animating dom elements as they mount or unmount",
"main": "dist/react-metro.js",
"keywords": [
"react",
"animation",
"gsap",
"tweenmax"
],
"homepage": "https://github.com/nicolasdelfino/react-metro#readme",
"author": {
"name": "Nicolas Delfino",
"url": "https://github.com/nicolasdelfino"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nicolasdelfino/react-metro.git"
},
"files": [
"dist",
"src"
],
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"gsap": "1.20.2",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-transition-group-plus": "0.5.0-alpha.1",
"rollup-plugin-auto-external": "^1.0.0"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-eslint": "^8.0.0",
"babel-plugin-external-helpers": "6.18.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.3.0",
"jest": "^19.0.2",
"jest-cli": "^21.1.0",
"npm-run-all": "4.0.2",
"rimraf": "^2.6.1",
"rollup": "0.45.2",
"rollup-plugin-babel": "3.0.1",
"rollup-plugin-commonjs": "8.1.0",
"rollup-plugin-node-globals": "1.1.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "1.1.1",
"rollup-plugin-uglify": "2.0.1",
"semantic-release": "^8.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && rollup -c config/prod.js",
"lint": "eslint src",
"precommit": "npm test",
"prepublish": "npm run clean && npm test && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run lint && jest"
}
}