-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 831 Bytes
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
{
"name": "gateflow",
"version": "1.1.1",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register ./test/**.spec.ts",
"build": "./node_modules/.bin/tsc",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^17.0.8",
"@types/redis": "^4.0.11",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"redis": "^3.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}