-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "wxio",
"version": "0.4.1",
"description": "",
"main": "cjs/wxio.js",
"module": "esm/wxio.js",
"files": [
"cjs",
"esm"
],
"scripts": {
"start": "rollup -c -w",
"clean": "rimraf ./cjs ./esm",
"prebuild": "npm run clean",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "ava"
},
"repository": {
"type": "git",
"url": "imyelo/wxio"
},
"author": "yelo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/imyelo/wxio/issues"
},
"homepage": "https://github.com/imyelo/wxio#readme",
"devDependencies": {
"@babel/core": "^7.0.0-rc.2",
"@babel/preset-env": "^7.0.0-rc.2",
"ava": "^5.1.0",
"eslint": "^5.4.0",
"fs-extra": "^7.0.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^6.1.5"
},
"dependencies": {
"map-obj": "^2.0.0",
"p-cancelable": "^0.3.0",
"p-queue": "^2.3.0",
"p-timeout": "^2.0.1"
}
}