-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
{
"name": "@ismay/cutout",
"version": "0.3.1",
"description": "render a raster image to svg",
"author": "ismay",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint:js": "eslint '**/*.js'",
"lint:prettier": "prettier --list-different '**/*.js'",
"precommit": "lint-staged"
},
"greenkeeper": {
"ignore": [
"baboon-image",
"coveralls",
"eslint",
"eslint-config-airbnb-base",
"eslint-config-prettier",
"eslint-plugin-import",
"husky",
"is-svg",
"jest",
"lena",
"lint-staged",
"prettier"
]
},
"publishConfig": {
"access": "public"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/**/*.js",
"!lib/rasterizers/**",
"!lib/hillclimb.js"
]
},
"devDependencies": {
"baboon-image": "^2.1.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"husky": "^0.14.3",
"is-svg": "^3.0.0",
"jest": "^23.0.1",
"lena": "^1.0.0",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
},
"dependencies": {
"bezier": "^0.1.0",
"bresenham": "0.0.4",
"color-blend": "^1.0.3",
"d3-random": "^1.1.0",
"dainty": "^0.2.2",
"debug": "^3.1.0",
"isndarray": "^1.0.0",
"point-in-ellipse": "^2.0.0",
"robust-point-in-polygon": "^1.0.3",
"zeros": "^1.0.0"
}
}