-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "linter-weex",
"version": "0.1.4",
"private": true,
"description": "A plugin for Thera Linter providing an interface to Weex.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"atom": ">=1.4.0 <2.0.0"
},
"configSchema": {
"enabledScopes": {
"description": "",
"type": "array",
"default": [
"source.we",
"source.weexvue"
],
"items": {
"type": "string"
}
}
},
"scripts": {
"test": "apm test",
"lint": "eslint ."
},
"keywords": [
"weex",
"lint"
],
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"async": "1.5.2",
"atom-linter": "^7.0.0",
"atom-package-deps": "^4.0.1",
"colors": "1.1.2",
"commander": "2.9.0",
"glob": "7.0.3",
"jshint": "2.9.2",
"parse-glob": "3.0.4",
"path-parse": "1.0.5",
"request": "2.72.0",
"strip-json-comments": "^2.0.1",
"tiny-promisify": "^0.1.1",
"xml": "1.0.1"
},
"devDependencies": {
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^5.0.0",
"eslint-plugin-import": "^1.10.2"
},
"eslintConfig": {
"rules": {
"comma-dangle": [
"error",
"never"
],
"global-require": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"atom"
]
}
],
"import/no-extraneous-dependencies": "off"
},
"extends": "airbnb-base",
"globals": {
"atom": true
},
"env": {
"es6": true,
"node": true
}
},
"package-deps": [
],
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"readme": "",
"readmeFilename": ""
}