-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@ivy/ivy-sapling-nodejs-module",
"version": "0.0.1",
"description": "awesome module",
"scripts": {
"debug": "export $(cat .env | xargs) && nodemon --exec 'node --inspect=9229 -r ts-node/register' src/index.ts",
"dev": "export $(cat .env | xargs) && nodemon --exec 'node -r ts-node/register' src/index.ts",
"build": "tsc",
"test": "jest",
"format": "npx prettier \"src/**/*.{ts,tsx}\" --write",
"test:coverage": "CI=true npm run test -- --collectCoverage --runInBand --reporters=default --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nxtlytics/ivy-sapling-nodejs-module.git"
},
"publishConfig": {
"registry": "https://nexus.nxtlytics.com/repository/npm-hosted"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nxtlytics/ivy-sapling-nodejs-module/issues"
},
"homepage": "https://github.com/nxtlytics/ivy-sapling-nodejs-module#readme",
"dependencies": {
"@types/node": "^12.12.15",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"jsdoc": "^3.6.3"
},
"devDependencies": {
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"nodemon": "^2.0.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && CI=true npm run test:coverage"
}
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__utils"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"jest-junit": {
"outputDirectory": "./coverage/junit",
"outputName": "junit.xml"
}
}