-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
59
60
61
{
"name": "emilia",
"version": "0.1.1",
"description": "Css sprite tool, supports rem, supports output multiple sprites pictures",
"main": "main.js",
"bin": {
"emilia": "./bin/emilia"
},
"scripts": {
"test": "cross-env NODE_ENV=test node node_modules/babel-cli/bin/babel-node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --dir test/coverage --root src --include-all-sources true -- --compilers js:babel-core/register -i test/*.test.js -w",
"coverage": "cat test/coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"dev": "rm -rf lib && node node_modules/babel-cli/bin/babel src -d lib -D -w"
},
"author": "liyh <cupools@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.11.6",
"checkin": "0.0.1",
"images": "^3.0.0",
"layout": "^2.2.0",
"lodash.sortby": "^4.7.0",
"mkdirp": "^0.5.1",
"postcss": "^5.1.2"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.11.4",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"chai-css": "0.0.4",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"del": "^2.2.2",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.3.3"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/cupools/emilia"
},
"bugs": {
"url": "https://github.com/cupools/emilia/issues"
},
"homepage": "https://github.com/cupools/emilia",
"keywords": [
"sprite",
"spritesheet",
"css"
]
}