-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.37 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.37 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cpp-cpm-engine",
"version": "2.9.34",
"description": "Open-source CPM engine — AACE-canonical, Daubert-disclosed, JS/Python parity across enumerated CPM comparison fields.",
"main": "cpm-engine.js",
"scripts": {
"test": "node cpm-engine.test.js",
"test:cites": "node tests/no-fabricated-citations.test.js",
"test:truncation": "node tests/no-truncation.test.js",
"test:version-refs": "node tests/no-stale-version-refs.test.js",
"test:sop": "node tests/sop-validator.test.js",
"test:crypto": "node tests/crypto-signoff.test.js",
"test:p6-comparison": "node tests/p6-comparison-validator.test.js",
"test:corpus-dag": "node tests/corpus-dag-fixture.test.js",
"crossval": "node cpm-engine.crossval.js",
"test:all": "npm test && npm run crossval && npm run test:cites && npm run test:truncation && npm run test:version-refs && npm run test:sop && npm run test:crypto && npm run test:p6-comparison && npm run test:corpus-dag",
"coverage": "c8 --reporter=text --reporter=json-summary --reporter=html --include=cpm-engine.js npm test",
"verify": "node scripts/attestation.js",
"attest": "node scripts/attestation.js --silent --output attestations/latest.json"
},
"keywords": [
"cpm",
"critical-path-method",
"forensic-delay-analysis",
"schedule-analysis",
"daubert",
"fre-702",
"aace",
"scl-protocol",
"construction",
"primavera-p6",
"tia",
"time-impact-analysis",
"monte-carlo",
"bayesian"
],
"author": "Critical Path Partners <hello@criticalpathpartners.ca>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danafitkowski/cpp-cpm-engine.git"
},
"homepage": "https://mcp.criticalpathpartners.ca/try",
"bugs": {
"url": "https://github.com/danafitkowski/cpp-cpm-engine/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"cpm-engine.js",
"cpm-engine.test.js",
"cpm-engine.crossval.js",
"LICENSE",
"README.md",
"DAUBERT.md",
"VERIFY_RELEASE.md",
"FORENSIC_USE_SOP.md",
"METHODOLOGY.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"docs/",
"examples/",
"python_reference/",
"tests/",
"scripts/",
"schemas/",
"validation/",
"release-evidence/",
"attestations/README.md",
"CLAUDE.md",
"ROADMAP_OPEN.md"
],
"devDependencies": {
"c8": "^11.0.0"
}
}