-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
{
"name": "apibuilder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"build": "ts-node src/index.ts",
"mocha": "mocha --watch --watch-extensions ts --require ts-node/register \"./src/**/*.spec.ts\"",
"mochaf": "mocha --watch --watch-extensions ts --require ts-node/register \"./src/${FILE}.spec.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/fs-promise": "^1.0.3",
"@types/sinon": "^7.0.13",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"fs-promise": "^2.0.3",
"json-beautify": "^1.1.0",
"lodash": "^4.17.11",
"ncp": "^2.0.0",
"prettify-json": "^1.0.0",
"pretty-error": "^2.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/faker": "^4.1.5",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.13",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"ts-node": "^8.0.3",
"ts-node-dev": "^1.0.0-pre.39",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
}
}