-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 994 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
{
"name": "learning-d3",
"version": "1.0.0",
"private": true,
"description": "Data-Driven Documents (This file was first created using the Yeoman generator generator-hchiam-learning: https://www.npmjs.com/package/generator-hchiam-learning",
"main": "src/index.js",
"scripts": {
"dev": "npm run start",
"start": "parcel src/index.html --open",
"build": "",
"test": "jest --passWithNoTests",
"lint": "eslint src/*.js --max-warnings=0",
"fix": "eslint --fix src/*.js",
"reminder": "echo; echo -e 'Reminders: Did you do \\033[1;34mnpm run my-build\\033[0m first? \nDo you need to \\033[1;34m[skip ci]\\033[0m?'; echo;"
},
"author": "hchiam",
"license": "MIT",
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-google": "^0.14.0",
"husky": "^3.0.9",
"jest-cli": "^24.9.0",
"typescript": "^4.6.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run reminder; npm run lint && npm test; npm run reminder;"
}
}
}