-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
58 lines (58 loc) · 1.64 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": "entypo",
"description": "SVG sprite for the Entypo+ icon collection.",
"version": "2.2.1",
"author": "Bret Comnes <bcomnes@gmail.com>",
"bugs": {
"url": "https://github.com/hypermodules/entypo/issues"
},
"dependencies": {
"brfs": "^2.0.0"
},
"devDependencies": {
"budo": "^11.0.0",
"exorcist": "^1.0.0",
"gh-release": "^3.0.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.0.0",
"rimraf": "^3.0.2",
"spritesh": "^1.2.0",
"standard": "*",
"svgo": "^1.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
},
"homepage": "https://github.com/hypermodules/entypo",
"keywords": [
"entypo",
"icons",
"sprite",
"svg"
],
"license": "ISC",
"main": "index.js",
"browserify": {
"transform": [
"brfs"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hypermodules/entypo.git"
},
"scripts": {
"build": "run-s clean optimize make-sprite clean:tmp build-www",
"build-www": "browserify -t brfs example.js --debug | exorcist www/bundle.js.map > www/bundle.js",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:tmp": "rimraf .tmp",
"start": "budo example.js:bundle.js --dir www --live --open -- -t brfs",
"make-sprite": "mkdirp dist && spritesh -i .tmp -o dist/sprite.svg --prefix entypo-",
"optimize": "run-p optimize:*",
"optimize:base": "mkdirp .tmp && svgo -f src/Entypo -o .tmp",
"optimize:social": "mkdirp .tmp && svgo -f src/Entypo\\ Social\\ Extension -o .tmp",
"prepare": "npm run build",
"gh-release": "gh-release",
"test": "standard && tape test/*.js | tap-spec && npm run build"
}
}