-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 985 Bytes
/
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
{
"name": "qbind",
"version": "0.1.2",
"description": "powerful asynchronous query binding for vanillajs",
"main": "dist/qbind.js",
"scripts": {
"build": "webpack --config=webpack.config.js; webpack --config=webpack.min.config.js",
"test": "mocha --require babel-register",
"watch": "webpack --config=webpack.dev.config.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/FabienArcellier/qbind"
},
"keywords": [
"cache",
"fetch",
"query",
"async",
"state-management"
],
"author": "Fabien Arcellier",
"license": "MIT",
"bugs": {
"url": "https://github.com/FabienArcellier/qbind/issues"
},
"homepage": "https://github.com/FabienArcellier/qbind#readme",
"devDependencies": {
"@babel/preset-env": "^7.19.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}