forked from SEED-platform/seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "seed",
"version": "2.20.0",
"description": "Standard Energy Efficiency Data (SEED) Platform™",
"license": "SEE LICENSE IN LICENSE.md",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "https://github.com/SEED-platform/seed"
},
"bugs": {
"url": "https://github.com/SEED-platform/seed/issues"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-angular": "^4.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-protractor": "^2.1.1",
"lodash": "^4.17.21",
"protractor": "^7.0.0",
"sass": "^1.69.3",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"webdriver-manager": "^12.1.9"
},
"scripts": {
"lint": "npx eslint \"seed/{docs,static}/**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"postinstall": "cd vendors && npm install",
"stylelint:fix": "stylelint seed/static/seed/scss/style.scss --fix",
"test": "npx protractor seed/static/seed/tests/protractor-tests/protractorConfig.js"
},
"browserslist": [
"last 3 versions"
]
}