-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "learning-javascript",
"version": "1.0.0",
"devDependencies": {
"chai": "latest",
"chai-as-promised": "latest",
"chai-string": "latest",
"cheerio": "latest",
"deep-equal": "latest",
"geckodriver": "latest",
"istanbul": "latest",
"jsdom": "latest",
"mocha": "latest",
"prettier": "^2.8.8",
"react": "latest",
"react-dom": "latest",
"selenium-webdriver": "latest",
"sinon": "latest",
"sinon-chai": "latest",
"zombie": "latest"
},
"scripts": {
"test-with-node": "node --test --experimental-test-coverage $(find school -name '*.test.js')",
"test-with-mocha": "mocha --exit $(find school -name '*.spec.js')",
"test": "npm run test-with-node && npm run test-with-mocha",
"pretest": "npm run prettier",
"prettier": "prettier . --write"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"dependencies": {
"sql.js": "^1.10.3"
}
}