-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "omg.js",
"version": "4.0.1",
"keywords": [
"canvas",
"event",
"drag",
"drop",
"draw"
],
"description": "Oh my goodness! Awesome Canvas Render Library.",
"main": "dist/omg.js",
"scripts": {
"build": "rm -rf dist/ && node rollup.config.js --beauty && node rollup.config.js --minify && cp dist/omg.min.js examples/omg.min.js",
"dev": "rm -rf dist/ && node rollup.config.js --example",
"eslint": "eslint src --ext .js --cache",
"release": "relix",
"extra": "cp dist/omg.min.js examples/omg.min.js && git add .",
"flow": "flow"
},
"author": "PengJiyuan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PengJiyuan/omg.js.git"
},
"bugs": {
"url": "https://github.com/PengJiyuan/omg.js/issues"
},
"homepage": "https://github.com/PengJiyuan/omg.js#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"colors": "^1.1.2",
"eslint": "^4.8.0",
"eslint-plugin-flowtype": "^2.46.2",
"flow-bin": "^0.70.0",
"fs-extra": "^4.0.2",
"pre-commit": "^1.2.2",
"relix": "^1.0.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-uglify": "^2.0.1"
},
"pre-commit": [
"flow",
"eslint",
"build",
"extra"
],
"files": [
"dist/*"
]
}