-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.31 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
{
"name": "typed-ecstasy",
"version": "2.2.0",
"description": "An entity component system for TypeScript (and JavaScript), based on ashley",
"keywords": [
"TypeScript",
"Entity Component System",
"Game",
"Ashley"
],
"homepage": "https://lusito.github.io/typed-ecstasy",
"bugs": {
"url": "https://github.com/Lusito/typed-ecstasy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Lusito/typed-ecstasy.git"
},
"license": "Apache-2.0",
"author": "Santo Pfingsten",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"lint": "npm run lint:style && npm run lint:es && npm run lint:package && npm run lint:md",
"lint:es": "eslint \"{src,sample}/**/*.{ts,tsx}\" --ext \".ts,.tsx\" --ignore-path .prettierignore",
"lint:es:fix": "npm run lint:es -- --fix",
"lint:fix": "npm run lint:style:fix && npm run lint:es:fix && npm run lint:package:fix && npm run lint:md",
"lint:md": "node lint-markdown.js",
"lint:package": "sort-package-json --check",
"lint:package:fix": "sort-package-json",
"lint:style": "npm run lint:style:base -- --check",
"lint:style:base": "prettier \"{src,sample}/**/*.{ts,tsx,js,json}\" \"./*.{ts,tsx,js,json}\"",
"lint:style:fix": "npm run lint:style:base -- --write",
"test": "jest --watch",
"test:ci": "jest"
},
"devDependencies": {
"@abraham/reflection": "^0.10.0",
"@lusito/eslint-config": "^2.0.0",
"@lusito/prettier-config": "^2.0.0",
"@types/jest": "^27.5.1",
"coveralls": "^3.1.1",
"eslint-plugin-jest": "^26.3.0",
"eslint-plugin-jsdoc": "^39.3.2",
"jest": "^28.1.0",
"markdown-link-check": "^3.10.2",
"rimraf": "^3.0.2",
"sort-package-json": "^1.57.0",
"ts-jest": "^28.0.3",
"typed-signals": "^2.5.0",
"typedi": "^0.10.0",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "4.6.4",
"vuepress": "^1.9.7",
"vuepress-plugin-fulltext-search": "^2.2.1",
"vuepress-plugin-typedoc": "^0.10.3"
},
"peerDependencies": {
"typed-signals": "^2.5.0",
"typedi": "^0.10.0"
}
}