-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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": "cat-herder",
"version": "0.1.11",
"description": "An ECS implementation in TypeScript",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"umd": "dist/cat-herder.umd.js",
"scripts": {
"build": "rimraf dist && rollup -c",
"lint": "eslint src --ext .ts",
"start": "jest --watch",
"test": "jest",
"prepublishOnly": "run-s lint test build"
},
"files": [
"dist"
],
"repository": "schtauffen/cat-herder",
"author": "Zach Dahl<[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"bitset": "^5.1.1"
}
}