-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.61 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
{
"name": "quickvoxelcore",
"version": "0.1.6",
"description": "The core for QuickVoxel app",
"homepage": "https://github.com/Pixpipe/quickvoxelcore",
"repository": "jonathanlurie/quickvoxelcore",
"moduleName": "quickvoxelcore",
"entry": "src/main.js",
"main": "dist/quickvoxelcore.js",
"es6": "dist/quickvoxelcore.es6.js",
"min": "dist/quickvoxelcore.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"dev": "serve . & rollup -w -c rollup.config.dev.js",
"doc": "documentation build src/main.js --project-name 'Quickvoxel Core' --config ./docgen/config.yml --sort-order 'alpha' --theme ./docgen/custom_theme/ -o ./doc/ -f html; documentation build src/main.js --project-name 'Quickvoxel Core' --config ./docgen/config.yml --sort-order 'alpha' -f md > documentation.md",
"lintfix": "standard --fix src/**/*.js",
"lint": "standard src/**/*.js"
},
"author": "Jonathan Lurie",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babylonjs": "^3.2.0-rc.2",
"documentation": "^6.1.0",
"pixpipe": "^0.2.0",
"rollup": "^0.57.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-glsl": "^1.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"serve": "^6.3.1",
"standard": "^11.0.1"
},
"dependencies": {}
}