-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.99 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": "@tmanderson/accrete",
"description": "Planetary system creation simulation in the browser, or the server.",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"predocs": "rm -rf ./docs && mkdir docs",
"docs:gen": "jsdoc -c ./.jsdocrc -d ./docs ./src/*.js",
"docs": "npm run predocs && npm run docs:gen && open ./docs/index.html",
"build:babel": "babel -o ./dist/accrete.tmp.js ./src",
"build:browser": "browserify -s Accrete -e ./src/index.js -o ./dist/accrete.js -t [ babelify ] -t workerify",
"build:worker": "browserify -e ./src/index.worker.js -o ./dist/accrete.worker.js -t [ babelify ] -t workerify",
"build:uglify": "uglifyjs ./dist/accrete.js > ./dist/accrete.min.js",
"build": "npm run build:browser && npm run build:worker && npm run build:uglify && npm run postbuild",
"prebuild": "rm -rf ./dist && mkdir ./dist",
"postbuild": "rm -rf ./dist/accrete.tmp.js",
"watch:src": "watch 'npm run build' src",
"watch:css": "watch 'npm run build:assets' assets/scss",
"watch": "concurrently 'npm run watch:src'",
"start:dev": "concurrently 'php -S localhost:3000' 'npm run watch'",
"start:node": "node -r @babel/register ./src"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babelify": "^10.0.0",
"browserify": "^14.5.0",
"chalk": "^2.4.1",
"concurrently": "^4.1.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.14.0",
"uglify": "^0.1.5",
"uglifyjs": "^2.4.11",
"watch": "^1.0.2",
"workerify": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmanderson/Accrete.js.git"
},
"author": "Mitch Anderson",
"license": "ISC",
"bugs": {
"url": "https://github.com/tmanderson/Accrete.js/issues"
},
"homepage": "https://github.com/tmanderson/Accrete.js#readme"
}