-
Notifications
You must be signed in to change notification settings - Fork 218
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "textures",
"version": "1.2.3",
"description": "SVG patterns for Data Visualization",
"repository": {
"type": "git",
"url": "https://github.com/riccardoscalco/textures.git"
},
"keywords": [
"svg pattern",
"patterns",
"textures",
"d3",
"svg",
"dataviz",
"data visualisation",
"maps",
"visual"
],
"author": {
"name": "Riccardo Scalco",
"email": "riccardoscalco@gmail.com",
"url": "http://riccardoscalco.github.io/"
},
"main": "dist/textures.js",
"module": "dist/textures.esm.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/riccardoscalco/textures/issues"
},
"homepage": "https://github.com/riccardoscalco/textures",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"d3-selection": "^2.0.0",
"faucet": "^0.0.1",
"jsdom": "^19.0.0",
"np": "^7.4.0",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2",
"tape": "^5.0.1",
"xo": "^0.39.1"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "xo src/**/*.js && xo tests/**/*.js && tape tests/**/*.js | faucet",
"pretest": "rollup -c",
"pub": "np"
},
"files": [
"dist"
]
}