-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "geopattern",
"version": "1.2.3",
"description": "Generate beautiful SVG patterns",
"keywords": [
"svg",
"pattern",
"geometric",
"background"
],
"homepage": "http://btmills.github.io/geopattern/",
"bugs": "https://github.com/btmills/geopattern/issues",
"license": "MIT",
"contributors": [
"Brandon Mills",
"Jason Long"
],
"main": "lib/index.js",
"files": [
"lib/*.js"
],
"scripts": {
"lint": "eslint .",
"mocha": "mocha tests",
"test": "npm run lint && npm run mocha",
"build": "browserify -s GeoPattern -i buffer . | uglifyjs -mc --screw-ie8 > js/geopattern.min.js",
"watch": "watchify -s GeoPattern -i buffer . -o js/geopattern.js"
},
"repository": {
"type": "git",
"url": "https://github.com/btmills/geopattern"
},
"dependencies": {
"object-assign": "^4.1.0"
},
"devDependencies": {
"browserify": "^13.1.1",
"eslint": "^0.10.0",
"mocha": "^2.0.1",
"uglify-js": "^2.7.5",
"watchify": "^3.7.0",
"xml-parser": "^1.2.1"
}
}