-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 KB
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
{
"name": "react-mation",
"version": "0.0.1",
"description": "Declarative animations in react powered by Mation",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/theadam/react-mation.git"
},
"keywords": [],
"scripts": {
"clean": "rimraf lib dist",
"build:lib": "babel src --loose --out-dir lib",
"build:umd": "webpack src/index.js dist/react-mation.js --display-modules --progress && NODE_ENV=production webpack src/index.js dist/react-mation.min.js --display-modules --progress",
"build": "npm run build:lib && npm run build:umd",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build",
"test": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"build-examples": "npm run build:umd; for i in `ls examples`; do pushd examples/$i; webpack; popd; done"
},
"author": "Adam Nalisnick",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.22",
"babel-core": "^5.8.22",
"babel-eslint": "^4.1.0",
"babel-loader": "^5.3.2",
"eslint": "^1.3.1",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.16.1",
"expect": "^1.13.4",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"rimraf": "^2.4.3",
"webpack": "^1.11.0"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"dependencies": {
"mation": "0.0.2",
"simple-signal": "0.0.2"
}
}