This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 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
60
61
62
63
64
65
66
67
{
"name": "planwithus-lib",
"version": "0.0.1",
"description": "JavaScript library for course requirements specification in plaNwithUS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "ts-node src/",
"bundle": "rollup -c",
"docs": "typedoc --exclude '**/*.test.ts' src/",
"test": "mocha -r ts-node/register 'src/**/*.test.ts'",
"test-docs": "mocha -r ts-node/register 'src/**/*.test.ts' --reporter mochawesome --reporter-options reportDir=docs",
"coverage": "nyc npm run test",
"coverage-docs": "nyc npm run test-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wei2912/planwithus-lib.git"
},
"author": "Ng Wei En, Benjamin Tan",
"license": "MIT",
"bugs": {
"url": "https://github.com/wei2912/planwithus-lib/issues"
},
"homepage": "https://github.com/wei2912/planwithus-lib#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.2",
"@rollup/plugin-yaml": "^3.1.0",
"@tsconfig/node16": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.0.0",
"@types/mochawesome": "^6.2.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.9.1",
"ajv": "^8.10.0",
"ajv-errors": "^3.0.0",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"fast-check": "^2.20.0",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"lint-staged": "^12.3.5",
"mocha": "^9.1.4",
"mochawesome": "^7.0.1",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"rollup": "^2.64.0",
"rollup-plugin-ts": "^2.0.4",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}