-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
51
52
{
"name": "we-render",
"version": "1.0.2",
"description": "canvas render engine",
"main": "dist/weRender.js",
"scripts": {
"build": "rollup -c build/es5.config.js",
"build:es6": "rollup -c build/es6.config.js",
"pro": "NODE_ENV=production rollup -c build/es5.config.js",
"watch": "rollup -c build/es5.config.js -w",
"update": "npm run build:es6 && npm run build && npm run pro && cp dist/weRender.min.js examples/lib",
"static": "cd examples && python -m SimpleHTTPServer 8000",
"doc": "./node_modules/.bin/jsdoc2md -t build/README.template.md -f src/*.js > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weiying-shenzhen/weRender.git"
},
"keywords": [
"canvas",
"2d",
"render",
"easy",
"light-weight",
"engine"
],
"author": "henryluki",
"license": "MIT",
"bugs": {
"url": "https://github.com/weiying-shenzhen/weRender/issues"
},
"homepage": "https://github.com/weiying-shenzhen/weRender#readme",
"devDependencies": {
"babel-eslint": "^7.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-config-react-app": "^0.6.2",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jsdoc-to-markdown": "^3.0.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}