-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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": "hyperapp-axios",
"description": "Hyperapp automatic state management when fetching data with axios",
"version": "0.1.11",
"main": "dist/hyperapp-axios.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"license": "MIT",
"homepage": "https://github.com/jonlov/hyperapp-axios#readme",
"bugs": {
"url": "https://github.com/jonlov/hyperapp-axios/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonlov/hyperapp-axios.git"
},
"files": [
"src",
"dist"
],
"author": "Jonathan Lovera (jonathan@rootplace.com)",
"keywords": [
"hyperapp",
"hyperapp-axios",
"axios",
"api",
"automatic state management",
"state management",
"xhr",
"http",
"ajax",
"promise"
],
"scripts": {
"test": "jest --coverage --no-cache",
"build": "npm run bundle && npm run minify",
"bundle": "rollup -c",
"minify": "uglifyjs dist/hyperapp-axios.js -o dist/hyperapp-axios.js --compress --mangle",
"prepare": "npm run build",
"release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"babel": {
"presets": "env"
},
"dependencies": {
"axios": "^0.17.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^22.0.4",
"uglify-es": "3.2.2",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^3.0.3"
}
}