-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.16 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
{
"name": "powellhero",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js source/",
"docs": "jsdoc source -r -d docs",
"html": "htmlhint --config .github/linters/.htmlhintrc source/**/*.html",
"css": "stylelint --config .github/linters/.stylelintrc.json source/**/*.css",
"js": "eslint -c .github/linters/.eslintrc.yml source/**/*.js",
"cypress": "eslint -c source/cypress_tests/.eslintrc.json source/cypress_tests/cypress/integration",
"lint": "npm run html & npm run css & npm run js",
"build": "rm -rf build; mkdir build; cp -R ./source/* build; cd build; rm -rf *tests; cd .."
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"transform": {}
},
"devDependencies": {
"cypress": "^9.7.0",
"eslint": "^7.21.0",
"eslint-plugin-cypress": "^2.11.2",
"htmlhint": "^1.1.4",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"jsdom": "^16.4.0",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0"
}
}