-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "data-structure-and-algorithms-applications",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "jest",
"lint:fix": "eslint src --fix",
"update": "npm update",
"generate:readme": "node build-tools/generate-readme.js",
"prepare": "husky install"
},
"author": "dy",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@types/jest": "^24.9.1",
"babel-jest": "^26.6.3",
"ejs": "^3.1.6",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1"
},
"dependencies": {
"data-structures-again": "^3.3.0"
},
"jest": {
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}