forked from pytest-dev/pytest-html
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 794 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"scripts": {
"build": "npm run build:css && npm run build:jsapp",
"build:css": "sass --no-source-map --no-error-css src/layout/css/style.scss src/pytest_html/resources/style.css",
"build:jsapp": "browserify ./src/pytest_html/scripts/index.js > ./src/pytest_html/resources/app.js",
"lint": "eslint src/pytest_html/scripts/ testing/",
"unit": "nyc mocha testing/**/unittest.js --require mock-local-storage",
"all": "npm run lint && npm run unit && npm run build:css && npm run build:jsapp"
},
"devDependencies": {
"browserify": "^17.0.1",
"chai": "^6.2.2",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"mocha": "^11.7.5",
"mock-local-storage": "^1.1.24",
"nyc": "^17.1.0",
"sass": "^1.97.2",
"sinon": "^21.0.1"
}
}