-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
26 lines (26 loc) · 916 Bytes
/
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
{
"name": "three-particle-fire",
"version": "0.1.0",
"author": "Yomotsu",
"license": "MIT",
"main": "dist/three-particle-fire.js",
"repository": "yomotsu/three-particle-fire",
"jsnext:main": "dist/three-particle-fire.module.js",
"module": "dist/three-particle-fire.module.js",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "1.7.0",
"rollup": "^2.77.3",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.16.3"
},
"scripts": {
"dev": "npm run watch",
"watch": "rollup --config --watch",
"build": "rollup --config",
"release": "rollup -c && uglifyjs dist/three-particle-fire.js -cm --preamble \"/*!\n * three-particle-fire\n * (c) 2017 @yomotsu\n * Released under the MIT License.\n */\" > dist/three-particle-fire.min.js"
}
}