-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·75 lines (75 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "shortbread",
"version": "2.0.0",
"description": "Asynchronous, non-blocking loading pattern for CSS and JavaScript resources",
"main": "index.js",
"scripts": {
"test": "npm run build && eslint **/*.js && istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "babel lib --presets es2015-script --out-dir build",
"prepublishOnly": "npm run build",
"php": "npm run build && node test/php/php.js && php -S 0.0.0.0:8080 -t tmp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkphl/shortbread.git"
},
"keywords": [
"css",
"stylesheet",
"javascript",
"js",
"cache",
"cookie",
"loader",
"loadcss",
"loadjs",
"preload",
"async",
"defer"
],
"author": "Joschi Kuphal <https://jkphl.is>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkphl/shortbread/issues"
},
"homepage": "https://github.com/jkphl/shortbread#readme",
"dependencies": {
"crypto": "1.0.1",
"is-url": "^1.2.4",
"npm-check-updates": "^3.1.18",
"prelink": "github:jkphl/prelink",
"through2": "^3.0.1",
"uglify-js": "^3.6.0",
"vinyl": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015-script": "^1.1.0",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "^7.14.2",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-filter": "^6.0.0",
"gulp-template": "^5.0.0",
"handlebars": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.3",
"stream-assert": "^2.0.3",
"vinyl-file": "^3.0.0"
},
"files": [
"build",
"doc",
"lib"
],
"engines": {
"node": ">=9.0.0"
}
}