-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
79 lines (79 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "unassert",
"description": "Encourages programming with assertions by providing tools to compile them away",
"version": "2.0.2",
"author": {
"name": "Takuto Wada",
"email": "takuto.wada@gmail.com",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/unassert-js/unassert/issues",
"contributors": [
{
"name": "Renée Kooi",
"url": "https://github.com/goto-bus-stop"
},
{
"name": "Jordan Harband",
"url": "https://github.com/ljharb"
}
],
"dependencies": {
"estraverse": "^5.0.0"
},
"devDependencies": {
"@twada/benchmark-commits": "^0.1.0",
"acorn": "^8.0.0",
"escodegen": "^2.0.0",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"semistandard": "^16.0.0",
"snazzy": "^9.0.0"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"src",
"dist"
],
"main": "./dist/index.cjs",
"exports": {
".": [
{
"import": "./src/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"./dist/index.cjs"
],
"./package.json": "./package.json"
},
"homepage": "https://github.com/unassert-js/unassert",
"keywords": [
"DbC",
"unassert",
"assert",
"assertion"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unassert-js/unassert.git"
},
"scripts": {
"preversion": "npm run build && npm test",
"build": "rimraf dist && rollup -c",
"lint": "semistandard --verbose src/*.mjs test/*.mjs | snazzy",
"fmt": "semistandard --fix src/*.mjs test/*.mjs",
"test": "npm run lint && mocha test"
},
"semistandard": {
"globals": [
"describe",
"beforeEach",
"it"
]
}
}