-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "eslint-plugin-camelcase-ohm",
"description": "An ESLint plugin that extends the built-in camelcase rule to allow underscores in semantic action names.",
"version": "0.2.0",
"author": "Patrick Dubroy <[email protected]> (http://dubroy.com)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-google": "^0.6.0",
"eslint-plugin-no-extension-in-require": "^0.2.0"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"scripts": {
"lint": "eslint .",
"test": "node test/test-camelcase-ohm.js",
"prepublish": "npm test"
},
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/ohmlang/eslint-plugin-camelcase-ohm.git"
},
"keywords": [
"eslint",
"plugin",
"node",
"require",
"path",
"extension"
],
"bugs": {
"url": "https://github.com/ohmlang/eslint-plugin-camelcase-ohm/issues"
},
"homepage": "https://github.com/ohmlang/eslint-plugin-camelcase-ohm"
}