-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "@hyperbudget/hyperbudget-core",
"version": "10.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && mkdir -p dist/schema && cp src/schema/*.json dist/schema",
"test": "nyc mocha",
"prepare": "npm run build",
"prebuild": "npm run test"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"dist/**/*",
"t/**/*"
],
"reporter": [
"html",
"lcov"
],
"all": true
},
"repository": {
"type": "git",
"url": "https://github.com/hyperbudget/hyperbudget-core.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"csv-parse": "^4.6.5",
"jsonschema": "^1.2.4",
"moment": "^2.22.1",
"path": "^0.12.7",
"sha1": "^1.1.1"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/csv-parse": "^1.1.11",
"@types/mocha": "^5.2.0",
"@types/moment": "^2.13.0",
"@types/node": "^12.12.5",
"@types/sha1": "^1.1.1",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"snap-shot-it": "^5.0.1",
"ts-node": "^8.4.1",
"typescript": "^3.0.1"
}
}