-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
49
50
51
52
53
54
{
"name": "css-datauri",
"version": "0.0.3",
"author": {
"name": "Rafael Nowrotek",
"url": "http://benignware.com"
},
"license": "MIT",
"bin": {
"css-datauri": "./index.js"
},
"main": "./lib/css-datauri",
"scripts": {
"clean": "rm -rf lib",
"build-datauri": "babel --plugins add-module-exports src/css-datauri.js --presets es2015-node4 --out-file lib/css-datauri.js",
"build": "npm run clean && mkdir -p lib && npm run build-datauri",
"watch-datauri": "npm run build-datauri -- -w",
"watch": "npm run watch-datauri",
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/benignware/css-datauri.git"
},
"engines": {
"node": ">= 0.10"
},
"keywords": [
"css",
"assets",
"data-url",
"base64"
],
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-core": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
"babel-preset-es2015-node4": "^1.0.1",
"babel-preset-stage-0": "^6.1.2",
"chai": "^3.5.0",
"eslint": "^1.9.0",
"mocha": "^3.0.2"
},
"dependencies": {
"commander": "^2.9.0",
"css-parse": "^2.0.0",
"css-stringify": "^2.0.0",
"datauri": "^1.0.4",
"mkdirp": "^0.5.1",
"multimatch": "^2.1.0"
}
}