-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "eslint-plugin-scissors",
"version": "1.0.0",
"description": "detects long call chains/nested expressions",
"repository": {
"type": "git",
"url": "git+https://github.com/Colafornia/eslint-plugin-scissors.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "wangyilin06 <[email protected]> (https://github.com/Colafornia)",
"main": "dist/index.js",
"scripts": {
"test": "mocha tests --recursive",
"build": "rm -fr ./dist && babel ./lib --out-dir ./dist --copy-files",
"debug": "iron-node node_modules/mocha/bin/_mocha --reporter dot tests/"
},
"devDependencies": {
"eslint": "~3.9.1",
"mocha": "^3.5.0"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Colafornia/eslint-plugin-scissors/issues"
},
"homepage": "https://github.com/Colafornia/eslint-plugin-scissors#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}