forked from SEED-platform/seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "seed",
"version": "2.8.1",
"description": "Standard Energy Efficiency Data (SEED) Platform™",
"license": "SEE LICENSE IN LICENSE",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "https://github.com/SEED-platform/seed"
},
"bugs": {
"url": "https://github.com/SEED-platform/seed/issues"
},
"engines": {
"node": ">=8.10.0"
},
"devDependencies": {
"@commitlint/cli": "~11.0.0",
"@commitlint/config-conventional": "~11.0.0",
"autoprefixer": "~9.7.6",
"eslint": "~6.8.0",
"eslint-plugin-angular": "~4.0.1",
"eslint-plugin-lodash": "~7.1.0",
"eslint-plugin-protractor": "~2.1.1",
"husky": "~4.3.0",
"lodash": "~4.17.15",
"postcss-cli": "~7.1.1",
"protractor": "~5.4.4",
"webdriver-manager": "~12.1.7"
},
"scripts": {
"postinstall": "cd vendors && npm install",
"lint": "./node_modules/.bin/eslint './seed/landing/static/**/*.js' './seed/static/seed/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"test": "./node_modules/.bin/protractor seed/static/seed/tests/protractor-tests/protractorConfig.js"
},
"browserslist": [
"last 3 versions",
"ie >= 10"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS || (printf 'Also see SEED’s resources on commit messages:\nhttps://github.com/SEED-platform/seed/blob/develop/docs/source/developer_resources.rst#git-naming-conventions\n\n'; false)"
}
}
}