-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "seed",
"version": "3.2.1",
"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": ">=20"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-angular": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"puppeteer": "^22.15.0",
"sass": "1.79.4",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0"
},
"scripts": {
"eslint": "eslint \"seed/{docs,static}/**/*.js\"",
"eslint:fix": "eslint --fix \"seed/{docs,static}/**/*.js\"",
"lint": "run-p -c eslint prettier stylelint",
"lint:fix": "run-p -c eslint:fix prettier:fix stylelint:fix",
"postinstall": "cd vendors && npm install",
"prettier": "prettier -c seed/static/seed/partials",
"prettier:fix": "npm run prettier -- -w",
"stylelint": "stylelint seed/landing/static/landing/scss/landing.scss seed/static/seed/scss/style.scss",
"stylelint:fix": "npm run stylelint -- --fix",
"test": "node seed/static/seed/tests/run_jasmine.js"
},
"browserslist": [
"last 3 versions"
]
}