-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.04 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
{
"name": "ccs-prototype-kit-model-interface",
"version": "0.8.1",
"description": "An interface for the ccs-prototype-kit to allow for the use of a pseudo database and models",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist/ && tsc",
"prepare": "npm run build",
"single-test": "mocha --require ts-node/register",
"test": "mocha --require ts-node/register test/**/*.test.ts",
"build-release": "node bin/check-nvmrc.js && ./bin/build-release.sh",
"publish-release": "node bin/check-nvmrc.js && ./bin/publish-release.sh"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.6",
"eslint": "^8.2.0",
"mocha": "^9.2.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}