forked from emarschner/iconify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "iconify",
"version": "1.0.0",
"description": "Utility for using SVG images as icons on the web with pure CSS and/or DOM injection",
"engines": {
"node": "4 || 5"
},
"main": "src/node/index.js",
"browser": "src/browser/index.js",
"browserify-shim": {
"jquery": "global:$"
},
"bin": "bin/cli",
"scripts": {
"start": "make examples",
"test": "make test && make coverage",
"coverage": "make coverage",
"build": "make dist",
"style-check": "eslint src/ tests/ examples/"
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/emarschner/iconify"
},
"license": "ISC",
"dependencies": {
"btoa": "^1.1.2",
"jquery": "^2.1.3",
"jsdom": "^7.2.2",
"optimist": "^0.6.1"
},
"devDependencies": {
"browserify": "^12.0.1",
"browserify-istanbul": "^0.2.1",
"browserify-shim": "^3.8.3",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"istanbul": "^0.4.1",
"karma": "^0.13.19",
"karma-browserify": "^4.4.2",
"karma-coverage": "^0.5.3",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^0.2.1",
"karma-node2umd": "^1.0.0",
"karma-phantomjs-launcher": "^0.2.3",
"karma-requirejs": "^0.2.2",
"mocha": "^2.1.0",
"node2umd": "^1.0.2",
"phantomjs": "^1.9.19",
"requirejs": "^2.1.16",
"serve": "^1.4.0"
}
}