-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "eslint-plugin-naming-convention",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "neutrino test --verbose --noStackTrace",
"start": "neutrino start",
"build": "neutrino build",
"lint": "neutrino lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomspace/eslint-plugin-naming-convention.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atomspace/eslint-plugin-naming-convention/issues"
},
"homepage": "https://github.com/atomspace/eslint-plugin-naming-convention#readme",
"devDependencies": {
"@atomspace/eslint": "3.3.0",
"@neutrinojs/jest": "8.3.0",
"@neutrinojs/node": "8.3.0",
"neutrino": "8.3.0",
"eslint": "*",
"eslint-plugin-self": "1.2.0"
},
"files": [
"src",
"LICENSE",
"README.md",
"package.json"
],
"dependencies": {
"array-flatten": "^2.1.2",
"ramda": "^0.26.1",
"requireindex": "^1.2.0",
"split-camelcase": "^1.0.1"
},
"peerDependencies": {
"eslint": "^4.0.0"
}
}