-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.94 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": "ddf-time-utils",
"version": "1.0.0",
"description": "Gapminder DDF time utils",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"test": "npm run build && mocha --timeout 200000 --compilers ts:ts-node/register --recursive test/**/*.spec.ts",
"n-test": "npm run build && mocha --timeout 200000 --compilers ts:ts-node/register --recursive test/**/*.spec.ts",
"test-travis": "istanbul cover mocha _mocha -- -R spec --timeout 200000 --compilers ts:ts-node/register --recursive test/**/*.spec.ts && codecov",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"github-release": "conventional-github-releaser -p angular",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valor-software/ddf-time-utils.git"
},
"keywords": [
"Gapminder",
"DDF"
],
"author": "Vyacheslav Chub<[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/valor-software/ddf-time-utils/issues"
},
"homepage": "https://github.com/valor-software/ddf-time-utils#readme",
"dependencies": {
"@types/lodash": "4.14.85",
"@types/moment": "2.13.0",
"@types/node": "8.0.53",
"lodash": "4.17.4",
"moment": "2.19.2"
},
"devDependencies": {
"@types/chai": "4.0.5",
"@types/deep-diff": "0.0.31",
"@types/es6-shim": "0.31.35",
"@types/mocha": "2.2.44",
"chai": "4.1.2",
"codecov": "3.0.0",
"compare-version": "0.1.2",
"conventional-changelog": "1.1.7",
"conventional-changelog-cli": "1.3.5",
"conventional-github-releaser": "2.0.0",
"istanbul": "0.4.5",
"mocha": "4.0.1",
"sinon": "4.1.2",
"sinon-chai": "2.14.0",
"ts-node": "^3.3.0",
"typescript": "2.6.1"
}
}