-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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": "node-mtmr",
"publishConfig": {
"registry": "https://registry.npmjs.org "
},
"repository": {
"url": "[email protected]:luismeyer/node-mtmr.git"
},
"keywords": [
"typescript",
"mtmr",
"node"
],
"version": "2.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/luismeyer/node-mtmr#readme",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/generator": "^7.14.3",
"callsites": "^3.1.0",
"copy-dir": "^1.3.0",
"glob": "^7.1.6"
},
"devDependencies": {
"@babel/types": "^7.14.2",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"pre-commit": "^1.2.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"files": [
"lib"
],
"pre-commit": [
"lint"
]
}