-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "babel-plugin-unassert",
"description": "Babel plugin for unassert: Encourages programming with assertions by providing tools to compile them away",
"version": "3.2.0",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/unassert-js/babel-plugin-unassert/issues",
"contributors": [
{
"name": "Notas Hellout",
"url": "https://github.com/make-github-pseudonymous-again"
}
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"mocha": "^9.0.0",
"semistandard": "^16.0.0",
"snazzy": "^9.0.0"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"index.js",
"package.json"
],
"homepage": "https://github.com/unassert-js/babel-plugin-unassert",
"keywords": [
"DbC",
"assert",
"babel",
"babel-plugin",
"unassert"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/unassert-js/babel-plugin-unassert.git"
},
"scripts": {
"lint": "semistandard --verbose index.js test/test.js | snazzy",
"fmt": "semistandard --fix index.js test/test.js",
"test": "mocha --timeout 0"
},
"semistandard": {
"ignore": [],
"globals": [
"describe",
"beforeEach",
"it"
]
}
}