-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "webpack-unassert-loader",
"description": "A webpack loader for unassert: Encourages programming with assertions by providing tools to compile them away",
"version": "1.2.0",
"author": {
"name": "Kenta Mori",
"email": "[email protected]",
"url": "http://github.com/zoncoen"
},
"bugs": {
"url": "https://github.com/unassert-js/webpack-unassert-loader/issues"
},
"keywords": [
"DbC",
"assert",
"assertion",
"webpack"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/unassert-js/webpack-unassert-loader"
},
"homepage": "https://github.com/unassert-js/webpack-unassert-loader",
"scripts": {
"fmt": "jsfmt -w ./*.js ./**/*-test.js ./gulpfile.js",
"lint": "gulp jshint",
"test": "gulp test"
},
"dependencies": {
"escodegen": "^1.6.1",
"esprima": "^4.0.0",
"estraverse": "^4.0.0",
"unassert": "^1.5.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-jshint": "^2.0.4",
"gulp-mocha": "^4.3.1",
"intelli-espower-loader": "^1.0.0",
"jsfmt": "^0.5.3",
"jshint": "^2.9.5",
"jshint-stylish": "^2.0.0",
"power-assert": "^1.0.0"
}
}