-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "@mlz/super-utils",
"version": "1.0.7",
"description": "open utils for development",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint": "eslint src/**.ts test/**.ts",
"build": "npm run clean && tsc -p tsconfig.json",
"prepublish": "npm run lint && npm run build",
"clean": "rm -rf ./dist",
"test": "mocha"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/juicecube/super-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/juicecube/super-utils/issues"
},
"homepage": "https://github.com/juicecube/super-utils#readme",
"dependencies": {},
"devDependencies": {
"@mlz/lint": "^1.1.9",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"chai": "^4.2.0",
"husky": "^4.0.10",
"mocha": "^6.1.4",
"mochawesome": "^4.0.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}