-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "presuppose",
"version": "1.1.1",
"description": "assertions library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "ava",
"build": "tsc",
"lint": "eslint src/ --ext .ts",
"prepublish": "npm run build"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/7willows/presuppose.git"
},
"keywords": [
"assert",
"expect",
"assertion"
],
"author": "7willows",
"license": "ISC",
"bugs": {
"url": "https://github.com/7willows/presuppose/issues"
},
"homepage": "https://github.com/7willows/presuppose#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
}
}