-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "hero-patterns-scss",
"version": "1.1.0",
"description": "A Sass utility to generate optimized SVG background images from heropatterns.com",
"main": "hero-patterns.scss",
"scripts": {
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"clean": "npm run clean:patterns && npm run clean:partials",
"clean:patterns": "node node_modules/rimraf/bin dist/patterns",
"clean:partials": "node node_modules/rimraf/bin dist/partials",
"build": "npm run clean && node build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polyneue/hero-patterns-scss.git"
},
"keywords": [
"hero-patterns",
"pattern",
"svg",
"scss",
"sass",
"sass-functions",
"sass-library"
],
"author": "Ed Mendoza <[email protected]> (http://www.edmendoza.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Polyneue/hero-patterns-scss/issues"
},
"homepage": "https://github.com/Polyneue/hero-patterns-scss#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"istanbul": "^1.1.0-alpha.1",
"mini-svg-data-uri": "^1.0.0",
"mocha": "^5.1.0",
"mocha-each": "^1.1.0",
"rimraf": "^2.6.2"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}