-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.23 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
37
38
39
40
41
42
43
44
{
"name": "js-20220905",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:specific": "cross-env NODE_ICU_DATA=node_modules/full-icu jest -t 'oop-basic-intro-to-dom/column-chart'",
"lint": "eslint \"./**/solution/*.js\"",
"lint:fix": "eslint --fix \"./**/.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dosandk/js-20220905.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dosandk/js-20220905/issues"
},
"homepage": "https://github.com/dosandk/js-20220905#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@testing-library/jest-dom": "^5.7.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.18.0",
"full-icu": "^1.3.1",
"husky": "^4.3.8",
"jest": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"pretty-format": "^26.6.2"
}
}