-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
56
{
"name": "quaranteam8",
"version": "1.0.0",
"description": "None",
"private": true,
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest test/unit/ --silent",
"test:puppeteer": "npm run build:test && jest test/puppeteer/ --silent",
"test:coverage": "jest test/unit/ --coverage --silent",
"build": "webpack",
"build:test": "webpack --config test/puppeteer/test.config.js",
"clean": "run-script-os",
"clean:darwin:linux": "rm -rf dist coverage || true",
"clean:win32": "rmdir /Q /S dist coverage || true",
"lint": "eslint --fix src/ test/",
"lint:report": "eslint --output-file eslint_report.json --format json src/ test/",
"docs:build": "npm run docs:build:api & npm run docs:build:test",
"docs:build:api": "node scripts/apiDoc.js > docs/API_Documentation.md",
"docs:build:test": "node scripts/testDoc.js > docs/Test_Documentation.md",
"all": "npm run lint && npm run build && npm run test:unit && npm run test:puppeteer && npm run docs:build"
},
"author": "quaranteam8",
"license": "ISC",
"dependencies": {
"eslint-plugin-jsdoc": "^24.0.6",
"firebase": "^7.14.6",
"jest-puppeteer": "^4.4.0",
"jsdoc": "^3.6.4",
"jsdoc-to-markdown": "^5.0.3",
"puppeteer": "^3.2.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"babel-jest": "^26.0.1",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"node-fetch": "^2.6.0",
"run-script-os": "^1.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"jest": {
"verbose": true
}
}