-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.24 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
{
"name": "preact-cli-plugin-async",
"version": "2.0.0",
"description": "Preact CLI plugin that adds support for async/await via fast-async",
"main": "dist/async-plugin.js",
"source": "async-plugin.js",
"scripts": {
"prepare": "npm t",
"build": "microbundle",
"test:build": "ln -fs ../node_modules test && preact build --cwd test && bundlesize -f 'test/build/bundle.*.js' -s 4.5kB",
"test": "eslint async-plugin.js && npm run -s build && npm run -s test:build",
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "eslint-config-developit"
},
"keywords": [
"preact",
"preact-cli",
"preact cli plugin"
],
"author": "Daniel Ciao <pluscubed@gmail.com> (http://pluscubed.com)",
"contributors": [
"Jason Miller <jason@developit.ca> (http://jasonformat.com)"
],
"repository": "developit/preact-cli-plugin-async",
"license": "MIT",
"devDependencies": {
"bundlesize": "^0.17.0",
"eslint": "^5.3.0",
"eslint-config-developit": "^1.1.1",
"microbundle": "^0.6.0",
"preact-cli": "^2.1.0"
},
"dependencies": {
"fast-async": "^6.3.0"
}
}