-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "assertate",
"version": "2.4.0",
"description": "TypeScript assertion helpers",
"keywords": [
"TypeScript",
"JavaScript",
"3.7",
"assertion",
"isomorphic",
"client",
"server"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Evan Louie <evlouie@gmail.com>",
"homepage": "https://github.com/evanlouie/assertate/",
"license": "MIT",
"scripts": {
"generate-docs": "shx rm -rf docs && typedoc --out docs src && shx touch docs/.nojekyll",
"prepublish": "shx rm -rf dist && tsc",
"test": "jest",
"test-watch": "jest --watchAll"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^16.6.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"ts-jest": "^27.0.4",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
}
}