-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.05 KB
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
{
"name": "shadowed",
"version": "0.0.10",
"description": "",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/prettier": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"http-server": "^0.12.3",
"husky": "^6.0.0",
"jest": "^27.0.3",
"pinst": "^2.1.6",
"prettier": "^2.3.0",
"rollup": "^2.50.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.2",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.9.0",
"typescript": "^4.2.4"
},
"scripts": {
"clean": "rm -Rf docs && rm -Rf dist && rm -Rf types",
"doc": "typedoc src/index.ts",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint \"*/**/*.{ts,js,json}\"",
"test:unit": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.js",
"prepublishOnly": "npm run clean && pinst --disable && npm run doc && npm run build && npm run test",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"demo": "npm run build && http-server -o demo",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MD4/shadowed.git"
},
"keywords": [
"typescript",
"library",
"shadow",
"casting",
"2D",
"light"
],
"author": {
"name": "Martin DEQUATREMARE",
"url": "https://github.com/MD4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MD4/shadowed/issues"
},
"homepage": "https://github.com/MD4/shadowed#readme",
"files": [
"dist",
"types",
"readme",
"docs"
]
}