-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.67 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
{
"name": "animo",
"description": "A powerful little tool for managing animations",
"repository": "https://github.com/ThrivingKings/animo",
"license": "MIT",
"devDependencies": {
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "6.9.0",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.9.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.9.2",
"eslint": "2.11.1",
"expect": "1.20.1",
"gh-pages-cli": "0.2.0",
"gitbook-cli": "2.3.0",
"karma": "0.13.22",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.0.1",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.7.0",
"mocha": "2.5.3",
"react": "15.2.0",
"react-dom": "15.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-minify": "^1.0.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"scripts": {
"lint": "eslint packages/**/src/*.js",
"test": "yarn lint && karma start --single-run",
"start": "node build.js && rimraf browser/packages && cp -R packages browser/ && webpack-dev-server --content-base browser/",
"build": "yarn test && node build.js",
"docs:build": "gitbook build && cp CNAME _book",
"docs:deploy": "yarn docs:build && gh-pages -d _book -b gh-pages"
},
"author": "Daniel Raftery"
}