forked from filamentgroup/loadCSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 915 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
32
33
34
35
36
37
38
{
"name": "fg-loadcss",
"version": "3.0.0",
"description": "A function for loading CSS asynchronously",
"main": "src/loadCSS.js",
"repository": {
"type": "git",
"url": "https://github.com/filamentgroup/loadCSS.git"
},
"author": "Filament Group <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/filamentgroup/loadCSS/issues"
},
"homepage": "https://github.com/filamentgroup/loadCSS",
"engines": {
"node": "11.9.0"
},
"devDependencies": {
"grunt": "^1.1.0",
"grunt-cli": "~1.3.2",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "~2.0.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^4.0.0",
"husky": "^1.3.1",
"matchdep": "^2.0.0"
},
"scripts": {
"start": "npx ./server.js",
"test": "npx grunt"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}