-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "snooty-mockup",
"version": "0.0.1",
"description": "Mock up snooty sites from JSON",
"main": "./build",
"bin": {
"snooty-mockup": "./build/main.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "tsc -b",
"watch": "tsc -b -w",
"test": "jest",
"verbose": "jest --verbose",
"coverage": "jest --coverage",
"docs": "npx typedoc --excludePrivate --exclude '**/*.test.ts' --out docs src",
"release": "release-it"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7",
"@types/jest": "^26",
"@types/jsonfile": "^6.0.1",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"eslint": "^6",
"eslint-config-prettier": "^6",
"eslint-plugin-prettier": "^3",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26",
"prettier": "^2",
"release-it": "^14",
"ts-jest": "^26",
"typedoc": "^0",
"typescript": "^4"
},
"dependencies": {
"jsonfile": "^6.1.0",
"yargs": "^15.4.1"
}
}