This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
83 lines (83 loc) · 2.84 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
82
83
{
"name": "ecsy",
"version": "0.4.2",
"description": "Entity Component System in JS",
"main": "lib/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "npm run clean && rollup -c && npm run docs && npm run build:cjs",
"build:cjs": "rimraf lib && babel src -d lib",
"docs": "cp README.md site/docs/README.md && rimraf site/docs/api/_sidebar.md; typedoc --readme none --mode file --excludeExternals --plugin typedoc-plugin-markdown --theme site/docs/theme --hideSources --hideBreadcrumbs --out site/docs/api/ --includeDeclarations --includes 'src/**/*.d.ts' src; touch site/docs/api/_sidebar.md",
"dev:docs": "nodemon -e ts -x 'npm run docs' -w src",
"dev": "concurrently --names 'ROLLUP,DOCS,HTTP' -c 'bgBlue.bold,bgYellow.bold,bgGreen.bold' 'rollup -c -w -m inline' 'npm run dev:docs' 'npm run dev:server'",
"dev:server": "http-server -c-1 -p 8080 --cors ./site",
"lint": "eslint src test site/examples",
"start": "npm run dev",
"deploy": "np",
"clean": "rimraf lib build site/build site/docs/README.md site/docs/api site/benchmarks.module.js",
"prepublishOnly": "npm run build",
"postdeploy": "npm run gh-pages",
"gh-pages": "gh-pages --dist=./site --dotfiles=true",
"benchmarks": "node -r esm --expose-gc benchmarks/index.js",
"test": "ava",
"travis": "npm run lint && npm run test && npm run build",
"watch:test": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MozillaReality/ecsy.git"
},
"keywords": [
"ecs",
"entity component system"
],
"author": "Mozilla Reality <[email protected]> (https://mixedreality.mozilla.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MozillaReality/ecsy/issues"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"esm"
]
},
"files": [
"build",
"lib",
"src"
],
"homepage": "https://github.com/MozillaReality/ecsy#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"ava": "^3.9.0",
"babel-eslint": "^10.0.3",
"benchmarker-js": "0.0.3",
"concurrently": "^4.1.2",
"docsify-cli": "^4.4.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"gh-pages": "^3.0.0",
"http-server": "^0.11.1",
"nodemon": "^1.19.4",
"np": "^6.2.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^1.29.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^5.2.0",
"typedoc": "^0.15.8",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.5"
}
}