-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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": "easy-node-utils",
"version": "0.0.3",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "mocha --timeout 10000 --require babel-core/register \"./tests/**/*.js\" --exit",
"build": "tsc"
},
"files": [
"lib"
],
"keywords": [
"typescript",
"node"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/moment": "^2.13.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"husky": "^4.0.1",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"ts-lint": "^4.5.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/uuid": "^3.4.5",
"moment": "^2.24.0",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add .",
"pre-push": ""
}
}
}