-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "hammerspace",
"version": "1.0.0",
"description": "An SDK that allows game developers to hook into a platform that eases game distribution",
"main": "dist/hammerspace.min.js",
"scripts": {
"build": "npm run test && webpack --mode=production && npm run docs",
"test": "jest --coverage",
"docs": "typedoc --out docs/ src/ --exclude '**/*+(main|.spec).ts'",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hammerspacejs/HammerSpace.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hammerspacejs/HammerSpace/issues"
},
"homepage": "https://github.com/hammerspacejs/HammerSpace#readme",
"devDependencies": {
"@types/jasmine": "~3.5.0",
"@types/jest": "~24.0.23",
"@types/node": "~12.12.12",
"awesome-typescript-loader": "~5.2.1",
"jest": "~24.9.0",
"terser-webpack-plugin": "^2.2.2",
"ts-jest": "~24.2.0",
"tslint": "~5.20.1",
"tslint-loader": "~3.5.3",
"typedoc": "~0.15.3",
"typescript": "~3.7.2",
"webpack": "~4.41.2",
"webpack-cli": "~3.3.10"
}
}