This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 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
{
"name": "babel-plugin-jsdoc-runtime-typecheck",
"version": "1.2.1",
"description": "Babel plugin, that adds typecheck, based on jsDoc.",
"license": "MIT",
"homepage": "https://github.com/johnthecat/babel-plugin-jsdoc-runtime-typecheck.git",
"author": "Sergey Zhuravlev <[email protected]> (https://github.com/johnthecat)",
"repository": {
"type": "git",
"url": "https://github.com/johnthecat/babel-plugin-jsdoc-runtime-typecheck.git"
},
"bugs": {
"url": "https://github.com/johnthecat/babel-plugin-jsdoc-runtime-typecheck/issues"
},
"keywords": [
"build",
"babel",
"plugin",
"jsdoc",
"typecheck",
"flow"
],
"main": "dist/index.js",
"scripts": {
"eslint:src": "eslint -c .eslintrc src/",
"eslint:test": "eslint --ignore-path test/.eslintignore -c test/.eslintrc test/",
"build": "npm run eslint:src && babel src --out-dir dist",
"build:watch": "babel src --watch --out-dir dist",
"build:ci": "npm run test && npm run build",
"test": "npm run eslint:test && node test",
"test:watch": "npm run eslint:test && node test --watch"
},
"pre-commit": [
"build:ci"
],
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"chai-diff": "^1.0.1",
"eslint": "^3.19.0",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"vm2": "^3.4.6",
"yargs": "^7.0.2"
},
"dependencies": {
"babel-template": "6.23.0",
"chalk": "1.1.3",
"core-js": "2.4.1",
"doctrine": "2.0.0"
},
"engineStrict": true,
"engines": {
"node": ">= 4.7.0"
}
}