-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.41 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
{
"name": "wheel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"eslint:fix": "eslint --fix --ext .js ./",
"new:debug": "node --inspect-brk=2893 ./New/index.js",
"new:test": "jest ./New",
"extendsSuper:debug": "node --inspect-brk=2893 ./ExtendsSuper/index.js",
"promise:debug": "node --inspect-brk=2893 ./Promise/debug.js",
"promise:test": "node ./Promise/test.js",
"currying:test": "jest ./Currying",
"sortingAlgorithm:test": "jest ./SortingAlgorithm",
"asyncAwait:debug": "node --inspect-brk=2893 ./AsyncFunction/debug.js",
"forOf:debug": "node --inspect-brk=2893 ./ForOf/index.js",
"forOf:test": "jest ./ForOf/forOf.test.js",
"virtualDOM:test": "jest ./VirtualDOM/virtualDOM.test.js",
"operatorPrecedence:test": "jest ./OperatorPrecedence/operatorPrecedence.test.js",
"compose:test": "jest ./Compose/compose.test.js",
"symbol:debug": "node --inspect-brk=2893 ./Symbol/debug.js",
"symbol:test": "jest ./Symbol/symbol.test.js"
},
"repository": {
"type": "git",
"url": "git@gitee.com:taichiyi/wheel.git"
},
"keywords": [],
"author": "taichiyi <taichiyi@foxmail.com>",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"dependencies": {
"promises-aplus-tests": "^2.1.2"
}
}