-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
57
58
59
{
"name": "js-pert",
"version": "2.0.1",
"description": "PERT - Program evaluation and review technique",
"main": "build/index.js",
"types": "types/index.d.ts",
"scripts": {
"clean": "rm -rf build && rm -rf types",
"test": "jest",
"build": "tsc",
"prepublish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/marcolanaro/js-pert.git"
},
"bugs": {
"url": "https://github.com/marcolanaro/js-pert/issues"
},
"homepage": "https://github.com/marcolanaro/js-pert",
"keywords": [
"PERT",
"AON",
"normal distribution",
"project management",
"Program evaluation and review technique",
"network",
"Gantt"
],
"author": "Marco Lanaro <[email protected]> (https://github.com/marcolanaro)",
"license": "MIT",
"dependencies": {
"gaussian": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"husky": "^1.2.0",
"jest": "^23.6.0",
"pretty-quick": "^1.8.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build"
}
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}