-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.58 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
43
{
"name": "practices",
"version": "1.0.0",
"description": "some tests and practices basic with js",
"main": "index.js",
"type": "module",
"scripts": {
"bench-climem": "CLIMEM=8999 node -r climem src/index.js",
"climem": "climem 8999",
"bench-flame": "0x -o -- node src/index.js",
"clinic-doctor": "clinic doctor -- node src/event-loop.js",
"clinic-flame": "clinic flame -- node src/index.js",
"clinic-heapprofile": "clinic heapprofile -- node src/index.js",
"clinic-bubbleprof": "clinic bubbleprof -- node src/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --config ./jest.config.js --watchAll",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --config ./jest.config.js --watch",
"test:nyc": "NODE_OPTIONS=--experimental-vm-modules npx nyc jest --runInBand --config ./jest.config.js",
"test:cov": "NODE_OPTIONS=--experimental-vm-modules npx jest --config ./jest.config.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anopszetex/practices-js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/anopszetex/practices-js/issues"
},
"homepage": "https://github.com/anopszetex/practices-js#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"clinic": "^12.0.0",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^26.6.3",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"sinon": "^9.2.4",
"supertest": "^6.2.4"
}
}