-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.2 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-suitescript",
"version": "1.3.2",
"description": "ESLint plugin for NetSuite's SuiteScript v1/v2 API",
"author": "Adam Davies <[email protected]> (https://adam-davies.me)",
"license": "MIT",
"homepage": "https://github.com/acdvs/eslint-plugin-suitescript#readme",
"repository": {
"type": "git",
"url": "https://github.com/acdvs/eslint-plugin-suitescript.git"
},
"bugs": "https://github.com/acdvs/eslint-plugin-suitescript/issues",
"main": "./lib/index.js",
"scripts": {
"build:docs": "node scripts/generate_docs.js",
"lint": "prettier -c {lib,tests}/**/*.js",
"lint:fix": "prettier -w {lib,tests}/**/*.js",
"pretest": "eslint \"**/*.js\" --ignore-pattern node_modules/",
"test": "mocha \"tests/rules/*.js\" --recursive --reporter min"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"keywords": [
"suitescript",
"netsuite",
"eslint",
"plugin",
"2.0",
"2.1",
"2.x"
],
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^7.1.2",
"prettier": "^3.0.3"
},
"peerDependencies": {
"eslint": "^8.51.0"
}
}