-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "unassert-cli",
"description": "CLI for unassert: provides `unassert` command which compiles assertions away from target file",
"version": "1.0.0",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bin": {
"unassert": "./bin/cmd.js"
},
"bugs": "https://github.com/unassert-js/unassert-cli/issues",
"dependencies": {
"acorn": "^8.0.0",
"concat-stream": "^2.0.0",
"escodegen": "^2.0.0",
"unassert": "^2.0.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"semistandard": "^16.0.1",
"snazzy": "^9.0.0"
},
"files": [
"CHANGELOG.md",
"README.md",
"LICENSE",
"bin",
"package.json"
],
"homepage": "https://github.com/unassert-js/unassert-cli",
"keywords": [
"DbC",
"assert",
"assertion",
"unassert"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unassert-js/unassert-cli.git"
},
"scripts": {
"lint": "semistandard --verbose bin/*.js test/*.js | snazzy",
"fmt": "semistandard --fix bin/*.js test/*.js",
"test": "npm run lint && mocha test"
},
"semistandard": {
"globals": [
"describe",
"beforeEach",
"it"
]
}
}