This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
50
51
52
53
54
55
{
"name": "flocx-ui",
"version": "1.2.2",
"description": "Flocx plugin for horizon to show and create bids, offers, and contracts",
"scripts": {
"postinstall": "if [ ! -d .tox ] || [ ! -d .tox/py37 ]; then tox -epy37 --notest; fi",
"test:js": "cross-env TZ=America/New_York karma start flocx_ui/karma.conf.js --single-run",
"test:js:watch": "cross-env TZ=America/New_York karma start flocx_ui/karma.conf.js",
"test:py": "tox",
"lint:js": "eslint --no-color flocx_ui/static",
"lint:py": "pylint flocx_ui/**/*.py"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.py": [
"pylint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdtzmn/flocx-ui.git"
},
"author": "Jacob Daitzman <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jdtzmn/flocx-ui/issues"
},
"homepage": "https://github.com/jdtzmn/flocx-ui#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^3.0.0",
"eslint-config-openstack": "^4.0.1",
"eslint-plugin-angular": "^4.0.1",
"husky": "^3.0.0",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-jasmine-matchers": "^4.0.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-threshold-reporter": "^0.1.15",
"lint-staged": "^9.1.0"
}
}