-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "bth012-2023-library",
"version": "0.0.1",
"description": "A small node.js project for a library with jest unit tests.",
"main": "library.js",
"type": "module",
"scripts": {
"library": "cross-env NODE_OPTIONS=--experimental-vm-modules node library.js",
"watch": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --watch",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pobengtsson/bth012-2023-library.git"
},
"keywords": [],
"author": "Per-Olof Bengtsson",
"license": "ISC",
"bugs": {
"url": "https://github.com/pobengtsson/bth012-2023-library/issues"
},
"homepage": "https://github.com/pobengtsson/bth012-2023-library#readme",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0"
}
}