-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "gulp-unassert",
"description": "Gulp plugin for unassert: Encourages programming with assertions by providing tools to compile them away",
"version": "3.0.0",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/unassert-js/gulp-unassert/issues",
"dependencies": {
"acorn": "^8.0.0",
"bufferstreams": "^3.0.0",
"convert-source-map": "^1.1.2",
"escodegen": "^2.0.0",
"multi-stage-sourcemap": "^0.3.1",
"plugin-error": "^2.0.0",
"through2": "^4.0.0",
"unassert": "^2.0.0",
"vinyl-sourcemaps-apply": "^0.2.0"
},
"devDependencies": {
"espower-loader": "^1.0.1",
"event-stream": "^4.0.0",
"intelli-espower-loader": "^1.1.0",
"mocha": "^10.0.0",
"power-assert": "^1.4.1",
"semistandard": "^16.0.0",
"snazzy": "^9.0.0",
"vinyl": "^2.0.0"
},
"files": [
"LICENSE-MIT",
"CHANGELOG.md",
"README.md",
"index.cjs"
],
"homepage": "http://github.com/unassert-js/gulp-unassert",
"keywords": [
"DbC",
"assert",
"assertion",
"gulpplugin",
"unassert"
],
"license": "MIT",
"main": "index.cjs",
"repository": {
"type": "git",
"url": "http://github.com/unassert-js/gulp-unassert.git"
},
"scripts": {
"fmt": "semistandard --fix index.cjs 'test/*.cjs'",
"lint": "semistandard --verbose index.cjs 'test/*.cjs' | snazzy",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --require intelli-espower-loader"
},
"semistandard": {
"globals": [
"describe",
"context",
"beforeEach",
"it"
]
}
}