-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
60
61
{
"name": "eslint-plugin-requirejs",
"author": "Casey Visco <[email protected]>",
"version": "4.0.1",
"description": "Enforce code conventions for RequireJS modules with ESLint",
"homepage": "https://github.com/cvisco/eslint-plugin-requirejs",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/cvisco/eslint-plugin-requirejs.git"
},
"keywords": [
"eslint",
"plugin",
"eslintplugin",
"eslint-plugin",
"require",
"requirejs",
"amd",
"lint"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cvisco/eslint-plugin-requirejs/issues"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"coveralls": "3.1.1",
"dateformat": "1.0.12",
"eslint": "3.3.0",
"eslint-config-eslint": "3.0.0",
"eslint-plugin-node": "2.0.0",
"istanbul": "0.4.5",
"mocha": "10.1.0",
"semver": "5.2.0",
"shelljs": "0.8.5",
"shelljs-nodecli": "0.1.1"
},
"peerDependencies": {
"eslint": ">=3.0.0"
},
"scripts": {
"unit": "node makefile.js unit",
"test": "node makefile.js test",
"lint": "node makefile.js lint",
"patch": "node makefile.js patch",
"minor": "node makefile.js minor",
"major": "node makefile.js major",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"mocha": "mocha"
},
"dependencies": {
"ignore": "5.0.5"
}
}