-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
58 lines (58 loc) · 1.46 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": "patternomaly",
"version": "1.3.2",
"description": "Easily generate patterns for use in data graphics",
"jsnext:main": "dist/patternomaly.mjs",
"main": "dist/patternomaly.js",
"typings": "index.d.ts",
"browser": "dist/patternomaly.js",
"scripts": {
"prebuild": "npm run lint",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"test:watch": "mocha -w",
"prepublish": "npm test",
"lint": "eslint src/ test/",
"coverage": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha"
},
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^6.1.2",
"babel-istanbul": "^0.12.1",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"babelrc-rollup": "^3.0.0",
"canvas": "^1.4.0",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"jsdom": "^9.8.3",
"mocha": "^5.2.0",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0"
},
"author": {
"name": "Tom Loudon",
"url": "http://betweentwobrackets.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ashiguruma/patternomaly.git"
},
"keywords": [
"pattern",
"canvas",
"colorblind",
"data",
"graphics"
],
"license": "MIT"
}