-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.38 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
79
80
81
82
83
84
85
86
87
{
"name": "@vizabi/reader-excel",
"version": "1.0.0",
"description": "Vizabi reader for a Excel files",
"main": "./lib/index-backend.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build-backend": "tsc",
"build-frontend": "npm run webpack",
"build": "npm run build-backend && npm run build-frontend",
"e2e": "nyc mocha --exit --timeout 200000 --require ts-node/register --recursive test/**/*.spec.ts",
"pree2e": "npm run coverage:clean && npm run build",
"pree2e:doc": "npm run pree2e",
"webpack": "webpack",
"prepublish": "npm run build",
"coverage:clean": "rm -rf coverage && rm -rf .nyc_output && rm -rf coverage.lcov",
"test-travis": "npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "npm run e2e",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"github-release": "conventional-github-releaser -p angular",
"preversion": "npm run build",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push origin master && git push --tags && npm run github-release"
},
"author": {
"name": "Gapminder Foundation",
"url": "https://www.gapminder.org",
"email": "[email protected]"
},
"contributors": [
{
"name": "Vyacheslav Chub",
"url": "https://github.com/buchslava"
},
{
"name": "Dima Basov",
"url": "https://github.com/dab2000"
}
],
"license": "GPL-3.0",
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"fetch-polyfill": "0.8.2",
"xlsx": "0.13.5"
},
"devDependencies": {
"@types/mocha": "5.2.5",
"@types/node": "9.4.6",
"@vizabi/core": "1.18.0",
"chai": "4.1.2",
"clean-webpack-plugin": "0.1.19",
"codecov": "3.1.0",
"compare-version": "0.1.2",
"conventional-changelog": "1.1.3",
"conventional-changelog-cli": "1.3.1",
"conventional-github-releaser": "1.1.9",
"mocha": "5.2.0",
"nyc": "13.0.1",
"source-map-loader": "0.2.4",
"ts-loader": "5.0.0",
"ts-node": "5.0.0",
"tslint": "5.9.1",
"typescript": "2.7.2",
"webpack": "4.8.1",
"webpack-cli": "2.1.3"
}
}