-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.53 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
52
53
54
55
56
{
"name": "espower-typescript",
"description": "power-assert instrumentor for TypeScript",
"version": "10.0.1",
"author": "Teppei Sato <[email protected]>",
"engines": {
"node": ">=10.17"
},
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"demo": "mocha --require './guess' test/demo.ts",
"lint": "eslint *.js",
"test": "run-s lint test:*",
"test:allow-js": "cd test/test-allow-js && mocha --require ../../guess test/*_test.js",
"test:outdir": "cd test/test-outdir && mocha --require ../../guess test/*_test.ts",
"test:ts": "mocha --require './guess' test/*_test.ts",
"test:tsx": "mocha --require './guess' test/*_test.tsx"
},
"dependencies": {
"espower-source": "^2.3.0",
"minimatch": "^5.1.0",
"source-map-support": "^0.5.12",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^10.17.51",
"@types/react": "^17.0.0",
"eslint": "^7.18.0",
"eslint-config-teppeis": "^12.0.0",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.3",
"power-assert": "^1.6.1",
"react": "^17.0.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typescript": ">= 2.7"
},
"homepage": "https://github.com/power-assert-js/espower-typescript",
"repository": {
"type": "git",
"url": "https://github.com/power-assert-js/espower-typescript"
},
"bugs": {
"url": "https://github.com/power-assert-js/espower-typescript/issues"
},
"keywords": [
"power-assert",
"typescript"
],
"license": "MIT"
}