forked from playcanvas/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "playcanvas",
"version": "1.40.0-dev",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.com",
"description": "PlayCanvas WebGL game engine",
"keywords": [
"3D",
"2D",
"VR",
"WebGL",
"WebGL2",
"game",
"engine",
"HTML5",
"browser",
"typings"
],
"license": "MIT",
"main": "build/playcanvas.js",
"module": "build/playcanvas.mjs",
"types": "index.d.ts",
"bugs": {
"url": "https://github.com/playcanvas/engine/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/engine.git"
},
"eslintConfig": {
"extends": "@playcanvas/eslint-config",
"parser": "babel-eslint"
},
"eslintIgnore": [
"examples/lib/*",
"src/polyfill/*"
],
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/plugin-proposal-class-properties": "7.12.13",
"@babel/preset-env": "7.12.13",
"@playcanvas/eslint-config": "1.0.7",
"@playcanvas/jsdoc-template": "1.0.17",
"@rollup/plugin-babel": "5.2.3",
"@rollup/plugin-replace": "2.3.4",
"@rollup/pluginutils": "4.1.0",
"babel-eslint": "10.1.0",
"chai": "4.2.0",
"eslint": "7.19.0",
"http-server": "0.12.3",
"jsdoc": "3.6.6",
"karma": "6.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"karma-spec-reporter": "0.0.32",
"mocha": "8.2.1",
"preprocessor": "1.4.0",
"rollup": "2.38.4",
"rollup-plugin-terser": "7.0.2",
"sinon": "9.2.4",
"tsd-jsdoc": "2.5.0",
"typescript": "4.1.3"
},
"scripts": {
"build": "rollup -c",
"build:es5": "rollup -c --environment target:es5",
"build:es5min": "rollup -c --environment target:es5min",
"build:es6": "rollup -c --environment target:es6",
"build:debug": "rollup -c --environment target:debug",
"build:profiler": "rollup -c --environment target:profiler",
"docs": "jsdoc -c conf-api.json",
"lint": "eslint --ext .js examples extras src rollup.config.js",
"serve": "http-server build -a localhost -p 51000",
"test": "karma start tests/karma.conf.js -- --single-run --release",
"test:watch": "karma start tests/karma.conf.js",
"test:debug": "karma start tests/karma.conf.js -- --single-run=false",
"test:tsd": "npm run tsd && tsc --pretty false build/playcanvas.d.ts",
"tsd": "jsdoc -c conf-tsd.json && node tsd.js",
"unzipbundle": "gzip -x tests/assets/bundle.gz"
}
}