-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "rapidash",
"version": "1.2.1",
"description": "Fastest functional utility library created by NodeJs community",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/src"
],
"license": "MIT",
"keywords": [
"javascript",
"utility",
"library"
],
"scripts": {
"solution": "TS_NODE_FILES=true node -r ts-node/register ./src/solution-cli.ts",
"test": "jest --coverage",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"compile:watch": "tsc -p . --watch",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/jest": "^25.1.0",
"@types/node": "^10.0.3",
"@types/webpack": "^4.41.3",
"benchmark": "^2.1.4",
"chalk": "^3.0.0",
"cli-table": "^0.3.1",
"gts": "^1.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"ts-jest": "^25.0.0",
"ts-node": "^8.6.2",
"typescript": "~3.7.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"@types/cli-table": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}