-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 904 Bytes
/
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
{
"name": "loadcss",
"version": "0.0.2",
"description": "Fast and reliable utility to asynchronously load multiple css files",
"main": "index.js",
"keywords": ["css", "stylesheets", "preload", "load"],
"dependencies": {
"callasync": "^1.0.0"
},
"devDependencies": {
"browserify": "^14.1.0",
"node-qunit-phantomjs": "^1.5.0",
"qunitjs": "^2.1.1",
"uglify-js": "^2.7.5"
},
"scripts": {
"test": "node-qunit-phantomjs test/index.html",
"prebuild": "rm -rf dist",
"build": "mkdir -p dist && browserify index.js -s loadcss -o dist/loadcss.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yefremov/loadcss.git"
},
"author": "Anton Yefremov <anton.yefremov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yefremov/loadcss/issues"
},
"homepage": "https://github.com/yefremov/loadcss#readme"
}