This repository has been archived by the owner on Aug 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
{
"name": "@financial-times/d3-bootloader",
"version": "0.0.0",
"files": [
"bin/",
"dist/",
"offline/"
],
"bin": {
"offline": "bin/go-offline.js"
},
"description": "Load D3 via SystemJS",
"main": "index.js",
"module": "index.js",
"browser": "dist/d3-bootloader.min.js",
"unpkg": "dist/d3-bootloader.min.js",
"scripts": {
"build": "rollup -c",
"offline:download-deps": "node -r esm get-offline.js",
"minify": "uglifyjs --comments -c -m -o dist/d3-bootloader.min.js dist/d3-bootloader.js",
"lint": "eslint index.js",
"prepare": "npm run offline:download-deps && npm run build && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ft-interactive/d3-bootloader.git"
},
"keywords": [],
"author": "Ændrew Rininsland <andrew.rininsland@ft.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ft-interactive/d3-bootloader/issues"
},
"homepage": "https://github.com/ft-interactive/d3-bootloader#readme",
"devDependencies": {
"axios": "^0.18.1",
"debug": "^3.2.6",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.18.0",
"esm": "^3.2.25",
"npm-prepublish": "^1.2.3",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0",
"uglify-js": "^3.6.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"execa": "^1.0.0",
"pacote": "^9.5.1",
"systemjs": "^0.20.19",
"tmp": "0.0.33"
},
"eslintConfig": {
"extends": "airbnb-base",
"root": true,
"env": {
"browser": true
},
"rules": {
"no-var": [
0
],
"quote-props": [
0
]
}
}
}