-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "esm-hook",
"version": "0.1.2",
"main": "register.js",
"license": "MIT",
"repository": {
"url": "[email protected]:proteriax/esm-hook.git"
},
"scripts": {
"build": "rollup -c",
"test": "mocha test/**/*.test.ts"
},
"files": [
"lib",
"register.js"
],
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/mocha": "github:whitecolor/mocha-types#da22474cf43f48a56c86f8c23a5a0ea36e295768",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"lodash": "^4.17.21",
"node-fetch": "^3.2.4",
"rollup": "2.73.0",
"rollup-plugin-ts": "^2.0.7",
"ts-node": "10.7.0",
"typescript": "4.6.4",
"mocha": "10.0.0"
},
"prettier": {
"arrowParens": "avoid",
"tabWidth": 2,
"printWidth": 90,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"dependencies": {
"esbuild": "^0.14.39"
}
}