-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.52 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
74
75
76
77
78
{
"name": "ddf-validation",
"version": "1.19.3",
"description": "DDF validion tool",
"main": "./lib/index.js",
"bin": {
"validate-ddf": "./src/cli.js"
},
"scripts": {
"test": "npm run build && mocha --exit --timeout 200000 --require ts-node/register --recursive test/**/*.spec.ts",
"n-test": "npm run build && mocha --exit --timeout 200000 --require ts-node/register --recursive test/**/*.spec.ts",
"test-travis": "istanbul cover mocha _mocha -- -R spec --exit --timeout 200000 --require ts-node/register --recursive test/**/*.spec.ts && codecov",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"github-release": "conventional-github-releaser -p angular",
"build": "tsc && touch lib/package.json && echo \\{\\\"version\\\": \\\"1.19.3\\\"\\} > lib/package.json",
"prepublish": "npm run build",
"preversion": "npm test",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push origin master && git push --tags && npm run github-release"
},
"author": "Dmitriy Shekhovtsov<[email protected]>",
"contributors": [
{
"name": "Vyacheslav Chub",
"email": "[email protected]"
}
],
"license": "GPL-3.0",
"dependencies": {
"async": "2.4.1",
"chalk": "1.1.3",
"datapackage": "1.0.6",
"ddf-time-utils": "1.0.4",
"deep-diff": "0.3.4",
"jsonexport": "1.5.2",
"levenshtein": "1.0.5",
"lodash": "4.17.4",
"md5": "2.2.1",
"mingo": "1.1.2",
"papaparse": "4.3.7",
"parse-decimal-number": "0.1.1",
"prettyjson": "1.2.1",
"readline": "1.3.0",
"semver": "5.3.0",
"terminal-kit": "1.13.7",
"winston": "2.3.1",
"yargs": "7.1.0"
},
"devDependencies": {
"@types/async": "2.0.40",
"@types/chai": "3.5.1",
"@types/chalk": "0.4.31",
"@types/deep-diff": "0.0.30",
"@types/es6-shim": "0.31.33",
"@types/levenshtein": "1.0.1",
"@types/lodash": "4.14.62",
"@types/md5": "2.1.32",
"@types/mocha": "2.2.41",
"@types/node": "7.0.13",
"@types/papaparse": "4.1.33",
"@types/semver": "5.3.31",
"@types/strip-bom": "3.0.0",
"@types/winston": "2.3.1",
"@types/yargs": "6.6.0",
"chai": "4.1.2",
"codecov": "2.2.0",
"compare-version": "0.1.2",
"conventional-changelog": "1.1.3",
"conventional-changelog-cli": "1.3.1",
"conventional-github-releaser": "1.1.9",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"sinon": "6.0.0",
"sinon-chai": "3.2.0",
"ts-node": "6.1.1",
"typescript": "2.3.4"
}
}