-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.07 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.07 KB
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
{
"name": "front",
"version": "0.0.1",
"description": "Front end",
"keywords": [],
"license": "",
"private": true,
"scripts": {
"e2eTest": "node e2e/local_js/run.e2e.js",
"eslintE2E": "eslint --config ${npm_config_eslintConfigFile} --color \"e2e/local_js/**/*.js\" \"e2e/src/**/*.js\"",
"eslintIT": "eslint --config ${npm_config_eslintConfigFile} --color config/test/common-test.cfg.js \"config/test/integration/*.js\" \"src/test/**/*.integration-test.js\"",
"eslintLocal": "eslint --config ${npm_config_eslintConfigFile} --color \"local_js/**/*.js\" \"local_modules/**/*.js\"",
"eslintMain": "eslint --config ${npm_config_eslintConfigFile} --color \"src/main/**/*.js\"",
"eslintUT": "eslint --config ${npm_config_eslintConfigFile} --color config/test/common-test.cfg.js config/test/unit-test.cfg.js \"src/test/**/*.test.js\"",
"integrationTest": "karma start config/test/integration/integration-test.cfg.js",
"jsbuild": "gulp --gulpfile local_js/build.js --cwd ./",
"jsdoc": "jsdoc --configure config/jsdoc.cfg.json",
"stylelint": "stylelint --config ${npm_config_stylelintConfigFile} \"src/main/modules/**/*.css\"",
"unitTest": "karma start config/test/unit-test.cfg.js"
},
"devDependencies": {
"chromedriver": "^2.41.0",
"double-runner": "file:local_modules/double-runner",
"eslint": "^5.3.0",
"geckodriver": "^1.12.1",
"graceful-fs": "*",
"gulp": "*",
"gulp-filter": "^5.0.1",
"gulp-rename": "*",
"gulp-uglify": "^3.0.1",
"jasmine": "^3.2.0",
"jasmine-core": "*",
"jasmine-pretty-html-reporter": "*",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.5.5",
"karma": "^3.0.0",
"karma-coverage": "*",
"karma-html-reporter": "*",
"karma-jasmine": "^1.1.2",
"karma-jasmine-jquery-2": "*",
"karma-mocha-reporter": "*",
"karma-phantomjs-launcher": "*",
"karma-renamer-preprocessor": "*",
"minimatch": "*",
"recur-fs": "*",
"selenium-webdriver": "*",
"stylelint": "*",
"stylelint-config-standard": "*"
},
"eslintConfig": {
"root": true
}
}