This repository was archived by the owner on May 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.67 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.67 KB
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
{
"name": "@salesforce/eslint-plugin-visualforce",
"version": "1.0.6",
"description": "An ESLint plugin to extract and lint scripts from VisualForce pages",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"test": "node tests/run-tests.js",
"prepublish": "yarn run build && yarn run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forcedotcom/eslint-plugin-visualforce.git"
},
"keywords": [
"eslint",
"visualforce",
"salesforce",
"eslint-plugin"
],
"author": "Salesforce",
"license": "ISC",
"bugs": {
"url": "https://github.com/forcedotcom/eslint-plugin-visualforce/issues"
},
"homepage": "https://github.com/forcedotcom/eslint-plugin-visualforce#readme",
"dependencies": {
"@salesforce/acorn-visualforce": "^1.4.2",
"htmlparser2": "^3.9.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-recommended": "^1.5.0",
"regenerator-runtime": "^0.10.3",
"tape": "^4.6.3",
"webpack": "^2.3.3"
},
"peerDependencies": {
"eslint": "3"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
},
"debug": true
}
]
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
]
},
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
},
"sourceType": "module"
}
}
}