-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.72 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
{
"name": "star-time-lapse",
"version": "0.3.2",
"description": "Drawing a star-filled sky with time-lapse effect",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint --fix *.js",
"umd": "cross-env NODE_ENV=development browserify index.js -t envify -s StarTimeLapse -o dist/star-time-lapse.js",
"umd-min": "cross-env NODE_ENV=production browserify index.js -t envify -t babelify --presets [ env react ] -s StarTimeLapse -t uglifyify -o | uglifyjs --compress unused,dead_code -o dist/star-time-lapse.min.js",
"build": "npm run umd && npm run umd-min",
"watch": "cross-env NODE_ENV=development watchify index.js -t envify -s StarTimeLapse -o dist/star-time-lapse.js",
"prepublish": "npm run build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fralonra/star-time-lapse.git"
},
"keywords": [
"canvas",
"time-lapse"
],
"author": "zoron (https://github.com/fralonra/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fralonra/star-time-lapse/issues"
},
"homepage": "https://github.com/fralonra/star-time-lapse#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"cross-env": "^5.1.5",
"envify": "^4.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"uglify-es": "^3.3.9",
"uglifyify": "^5.0.0",
"watchify": "^3.11.0"
},
"dependencies": {
"star-colors": "0.0.1"
}
}