-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 929 Bytes
/
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
{
"name": "maplepack",
"version": "1.0.0",
"main": "src/index.ts",
"module": "src/index.ts",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/parser": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/types": "^7.14.8",
"@types/fs-extra": "^9.0.12",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"rollup": "^2.55.1",
"typescript": "^4.3.5"
},
"dependencies": {
"uuid": "^8.3.2"
},
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.js,*.ts": "eslint --cache --fix"
}
}