-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.71 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.71 KB
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
{
"name": "icon-patterns",
"version": "2.0.0",
"description": "Include animated CSS icon patterns in your background",
"main": "dist/icon-patterns.js",
"jsnext:main": "dist/icon-patterns.js",
"browser": "dist/icon-patterns.js",
"scripts": {
"start": "./node_modules/.bin/gulp watch",
"build": "./node_modules/.bin/gulp build",
"pretest": "./node_modules/.bin/eslint -- ./src ./tests --config --ext .js",
"test": "./node_modules/.bin/tape tests/**/*.spec.js",
"documentation": "./node_modules/.bin/jsdoc ./src/** --configure jsdoc.json --readme README.md --recurse",
"coverage": "find ./tests -name '*.spec.js' | xargs ./node_modules/.bin/istanbul cover ./node_modules/.bin/tape",
"coverage-code-cov": "find ./tests -name '*.spec.js' | xargs ./node_modules/.bin/istanbul cover ./node_modules/.bin/tape --report lcovonly -- -R spec && ./node_modules/.bin/codecov --token=ca1c25fe-8035-4e5a-9a23-41467ae8e8d8",
"postpublish": "npm run coverage-code-cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emiliosnic/icon-patterns.git"
},
"author": {
"name": "emiliosnic"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/emiliosnic/icon-patterns/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-help": "^1.6.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"tape": "^4.8.0"
}
}