-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.16 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": "babel-plugin-jsdoc-to-assert",
"repository": {
"type": "git",
"url": "git+https://github.com/azu/babel-plugin-jsdoc-to-assert.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/azu/babel-plugin-jsdoc-to-assert",
"license": "MIT",
"files": [
"src/",
"lib/"
],
"bugs": {
"url": "https://github.com/azu/babel-plugin-jsdoc-to-assert/issues"
},
"version": "4.0.0",
"description": "Babel plugin convert jsdoc to assertion.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "mocha",
"updateSnapshot": "UPDATE_SNAPSHOT=1 mocha"
},
"keywords": [
"babel",
"plugin",
"assert",
"testing",
"coc"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"mocha": "^5.2.0"
},
"dependencies": {
"doctrine": "^2.0.0",
"jsdoc-to-assert": "^2.6.1"
}
}