This repository was archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
55
56
57
58
59
60
61
62
{
"name": "import-css",
"version": "3.0.0",
"description": "Load CSS asynchronously without render blocking in the given order.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TrigenSoftware/import-css.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/import-css/issues"
},
"main": "lib/link-async.js",
"scripts": {
"lint": "eslint --cache 'src/*.js'",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"import-css",
"css"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"escope": "^3.6.0",
"eslint": "^4.11.0",
"eslint-config-trigen": "^2.2.0",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-babel-minify": "^3.1.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"babel": {
"comments": false,
"presets": [
[
"env",
{
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"iOS > 7",
"Android > 4.4",
"not OperaMini all"
]
}
}
],
"stage-0"
]
},
"files": [
"lib"
]
}