-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.19 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": "@puzzle-js/client-lib",
"main": "dist/index.js",
"version": "1.8.5",
"author": "<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/puzzle-js/puzzle-lib"
},
"scripts": {
"build": "TS_NODE_FILES=true node_modules/.bin/webpack --config webpack.config.js && cp -r public dist/public && ./node_modules/.bin/tsc",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 node_modules/.bin/jest --coverage --silent",
"test:watch": "NODE_TLS_REJECT_UNAUTHORIZED=0 node_modules/.bin/jest --coverage --watch --silent --runInBand",
"lint": "./node_modules/.bin/tslint -p ./tsconfig.json",
"lint:fix": "./node_modules/.bin/tslint -p ./tsconfig.json --fix"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/faker": "^4.1.5",
"@types/gun": "^0.9.2",
"@types/jest": "^25.2.3",
"@types/jsdom": "^16.2.15",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"faker": "^4.1.0",
"jest": "^25.5.4",
"jsdom": "^15.0.0",
"sinon": "^7.3.2",
"ts-jest": "^25.5.1",
"ts-loader": "^9.4.4",
"tslint": "^5.16.0",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "5.1.4"
}
}