This repository has been archived by the owner on Jul 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.89 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
65
66
67
68
69
70
71
72
73
{
"name": "json2array",
"version": "4.0.0",
"description": "Transforms JS objects to arrays",
"repository": {
"type": "git",
"url": "https://github.com/holvonix-open/json2array-ts.git"
},
"keywords": [
"csv", "json", "mapping", "transform", "arrays"
],
"engines": {
"node": "^10.15.3",
"yarn": "^1.12.3"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"LICENSE",
"NOTICE",
"README.md"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"prettier.config.js",
"**/*.d.ts",
"test/**/*.*",
"build/**/**/*.js"
],
"all": true
},
"author": "Holvonix LLC <[email protected]> (https://github.com/holvonix-open/json2array-ts)",
"license": "Apache-2.0",
"private": false,
"scripts": {
"t": "yarn fix && yarn test --grep='#slow' --invert",
"cleantests": "rm -rf *.lcov .nyc_output coverage",
"clean": "gts clean",
"start": "node index.js",
"debug": "node --inspect index.js",
"cleanstart": "yarn clean; yarn start",
"test": "nyc ts-mocha -p ./tsconfig.json 'test/**/*.ts'",
"test-coverage": "yarn clean && yarn test && yarn report-coverage",
"report-coverage": "nyc report --reporter=json && codecov -F unit -f coverage/*.json",
"lint": "yarn fix && yarn check",
"check": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "yarn clean && yarn check && yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check",
"preversion": "yarn test"
},
"dependencies": {
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^12.6.1",
"codecov": "^3.4.0",
"gts": "^1.0.0",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"ts-mocha": "^6.0.0",
"typescript": "~3.5.0"
}
}