-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "sprite-extend-proton",
"version": "1.2.0",
"description": "Proton particle renderer for spritejs",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --fix",
"build": "babel src -d lib && webpack --env.production",
"standalone": "babel src -d lib && webpack --env.standalone",
"start": "webpack-dev-server --watch-poll",
"prepublishOnly": "npm run build"
},
"author": "akira-cn",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-runtime": "^0.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-sprite": "^1.0.6",
"eslint-plugin-html": "^4.0.3",
"proton-js": "^3.1.2",
"sprite-core": "^2.9.1",
"webpack": "^4.8.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"babel-decorators-runtime": "^0.2.0",
"babel-runtime": "^6.26.0"
}
}