-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "dcs-icon-font",
"version": "3.0.1",
"description": "A generator that enables you to generate fonts from a set of SVG icons.",
"repository": {
"type": "git",
"url": "https://github.com/Exictos-DCS/dcs-icon-font"
},
"keywords": [
"webfont",
"webfont generator",
"SVG icon",
"SVG icons",
"icon font",
"exictos",
"exictos dcs",
"web icons",
"SVG font",
"icon font generator",
"icon font"
],
"bin": {
"dcs-icon-font": "./app/index.js"
},
"scripts": {
"start": "node app/index.js",
"build": "babel src -d app",
"watch": "watch \"npm run build\" src",
"test": " jasmine spec/index-spec.js"
},
"author": "Orêncio Gonçalves orencio.goncalves@exictos.com",
"license": "ISC",
"dependencies": {
"glob": "^7.0.3",
"minimist": "^1.2.0",
"rimraf": "^2.5.2",
"webfonts-generator": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "2.8.0",
"eslint-config-airbnb": "8.0.0",
"eslint-plugin-import": "^1.6.1",
"handlebars": "^4.0.5",
"jasmine": "^2.4.1",
"watch": "^0.18.0"
}
}