-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "fetch-inject",
"description": "Dynamically inline assets into the DOM using Fetch Injection.",
"module": "dist/fetch-inject.es.js",
"main": "dist/fetch-inject.umd.js",
"scripts": {
"build": "npm run clean && npm run test && npm run build-iife && npm run build-es && npm run build-umd",
"build-iife": "rollup -c && MINIFIER=on rollup -c",
"build-es": "FORMAT=es rollup -c && FORMAT=es MINIFIER=on rollup -c",
"build-umd": "FORMAT=umd rollup -c && FORMAT=umd MINIFIER=on rollup -c",
"clean": "rimraf ./dist/*",
"test": "npm run lint",
"lint": "standard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jhabdas/fetch-inject.git"
},
"keywords": [
"dom",
"fetch",
"inject",
"promise",
"script",
"css"
],
"author": "Josh Habdas",
"license": "MIT",
"devDependencies": {
"rimraf": "^2.6.1",
"rollup": "^0.41.4",
"rollup-plugin-license": "^0.3.0",
"rollup-plugin-uglify": "^1.0.1",
"semantic-release": "^6.3.2",
"standard": "^9.0.0",
"uglify-js-harmony": "^2.7.5",
"semantic-release": "^6.3.2"
},
"standard": {
"ignore": [
"/dist"
]
},
"bugs": {
"url": "https://github.com/jhabdas/fetch-inject/issues"
},
"homepage": "https://github.com/jhabdas/fetch-inject#readme"
}