-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "@erikwatson/bramble",
"version": "0.6.0",
"description": "A game development library.",
"main": "dist/bramble.js",
"types": "./dist/bramble.d.ts",
"author": "Erik Watson",
"license": "MIT",
"files": [
"dist/**/*"
],
"devDependencies": {
"glob": "^7.1.3",
"http-server": "^0.12.3",
"husky": "^1.3.1",
"jest": "^24.0.0",
"prettier": "^1.16.2",
"pretty-quick": "^1.10.0",
"ts-loader": "^8.0.11",
"typedoc": "^0.23.16",
"typescript": "^4.8.4",
"typescript-coverage-report": "^0.3.1",
"typescript-loader": "^1.1.3",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.1"
},
"scripts": {
"release": "npm run build:prod && npm publish --access=public",
"build": "npm run build:prod && npm run build:dev",
"build:prod": "npx webpack-cli --config webpack.prod.js",
"build:dev": "npx webpack-cli --config webpack.dev.js",
"analyse": "npx webpack-cli --config webpack.analyse.js",
"watch": "npx webpack-cli --config webpack.dev.js --watch",
"docs": "npx typedoc ./src/bramble.ts"
},
"dependencies": {
"node-fetch": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/championchap/Bramble.git"
},
"keywords": [
"Multimedia",
"Graphics",
"Sound",
"Games"
],
"bugs": {
"url": "https://github.com/championchap/Bramble/issues"
},
"homepage": "https://github.com/championchap/Bramble"
}