-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 899 Bytes
/
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
{
"name": "d3-party",
"version": "1.1.0",
"description": "lol.",
"main": "dist/d3-party.js",
"module": "index.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepare": "npm test && npm run build"
},
"keywords": [
"d3",
"party"
],
"author": "Ændrew Rininsland <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"d3-selection": "^1.3.2",
"jest": "^23.6.0",
"rollup": "^0.65.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"xo": "^0.23.0"
},
"xo": {
"prettier": true,
"envs": [
"browser",
"jest"
]
},
"peerDependencies": {
"d3-selection": "^1.3.2"
},
"babel": {
"presets": [
"@babel/env"
]
}
}