forked from tddbc/javascript-jest
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
44
45
46
47
48
49
50
51
{
"name": "javascript-jest",
"description": "skeleton for Node.js + Jest users.",
"version": "0.1.0",
"author": {
"name": "TDDBC and other contributors"
},
"bugs": {
"url": "https://github.com/tddbc/javascript-jest/issues"
},
"homepage": "https://github.com/tddbc/javascript-jest",
"keywords": [
"TDDBC",
"jest",
"esm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tddbc/javascript-jest.git"
},
"scripts": {
"js": "node main.js",
"mjs": "node --experimental-modules main.mjs",
"fmt": "prettier --write *js *.json lib/*js",
"fmt:check": "prettier --check *js *.json lib/*js",
"lint": "eslint main.js main.mjs lib/*js",
"pretest": "npm run fmt:check && npm run lint",
"test": "npm run test:js",
"test:js": "jest --config jest_js.config.js",
"test:mjs": "jest --config jest_mjs.config.js",
"watch:js": "npm run test:js -- --watch",
"watch:mjs": "npm run test:mjs -- --watch"
},
"main": "main.mjs",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"acorn": "^7.1.1",
"babel-jest": "^28.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^28.1.0",
"prettier": "^1.19.1",
"rewire": "^5.0.0"
}
}