-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 931 Bytes
/
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
{
"private": true,
"name": "warsawjs-workshop-27-prime-sum",
"description": "",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "piecioshka@gmail.com",
"url": "https://piecioshka.pl/"
},
"scripts": {
"clear": "rm -rf dist/ coverage/ .nyc_output/",
"clear:all": "rm -rf node_modules/ && npm run clear",
"start": "node src/index.js",
"test": "mocha",
"test:watch": "mocha --watch",
"coverage": "nyc npm run test && nyc report --reporter=html",
"lint": "eslint ."
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^5.16.0",
"eslint-config-piecioshka": "^2.0.4",
"mocha": "^8.3.2",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git@github.com:piecioshka/warsawjs-workshop-27-prime-sum.git"
}
}