-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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": "jsdoc-to-assert",
"repository": {
"type": "git",
"url": "git+https://github.com/azu/jsdoc-to-assert.git"
},
"author": "azu",
"email": "azuciao@gmail.com",
"homepage": "https://github.com/azu/jsdoc-to-assert",
"license": "MIT",
"files": [
"src/",
"lib/"
],
"bugs": {
"url": "https://github.com/azu/jsdoc-to-assert/issues"
},
"version": "2.8.0",
"description": "Convert comment to assert. runtime assert",
"main": "lib/jsdoc-to-assert.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "mocha"
},
"keywords": [
"ast",
"jsdoc",
"assert",
"testing"
],
"devDependencies": {
"ast-equal": "^1.0.2",
"babel-cli": "^6.6.5",
"babel-generator": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.7.2",
"babel-template": "^6.7.0",
"babel-traverse": "^6.7.3",
"babel-types": "^6.7.2",
"babylon": "^6.7.0",
"cross-env": "^3.1.4",
"escodegen": "^1.8.0",
"esprima": "^3.1.1",
"estraverse": "^4.2.0",
"mocha": "^3.1.2",
"power-assert": "^1.3.1"
},
"dependencies": {
"doctrine": "^2.0.0",
"object-assign": "^4.1.0"
}
}