This repository has been archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
{
"name": "@financial-times/load-data",
"version": "1.0.12",
"description": "A general-purpose multi-data loader",
"browser": "dist/loadData.dist.min.js",
"main": "dist/loadData.cjs.js",
"module": "dist/loadData.module.js",
"repository": "ssh://git@github.com/financial-times/djd-load-data",
"scripts": {
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc mocha",
"build": "rollup -c rollup.config.js"
},
"keywords": [
"fetch",
"data",
"csv",
"tsv",
"annotated TSV",
"atsv"
],
"author": "Ændrew Rininsland <andrew.rininsland@ft.com>",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^2.2.43",
"@types/moxios": "^0.4.8",
"@types/node": "^8.0.44",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^2.3.1",
"mocha": "^4.0.1",
"moxios": "^0.4.0",
"npm-prepublish": "^1.2.3",
"nyc": "^11.2.1",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript2": "^0.7.0",
"rollup-plugin-uglify": "^2.0.1",
"semantic-release": "^8.2.0",
"source-map-support": "^0.5.0",
"static-server": "^2.0.5",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.3"
},
"dependencies": {
"@types/d3-dsv": "^1.0.30",
"@types/ramda": "github:types/npm-ramda#b3da85f3c7e06cd8561e13a3edb98d9d0b9c07f4",
"axios": "^0.17.0",
"d3-dsv": "^1.0.7",
"ramda": "^0.25.0",
"whatwg-fetch": "^2.0.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"test/**/*"
],
"reporter": [
"lcov",
"text"
]
}
}