forked from oner-team/oner-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 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
{
"name": "natty-fetch-fd",
"version": "2.6.1",
"description": "基于 natty-fetch,增加入参格式:FormData。",
"repository": "https://github.com/zsjjs/natty-fetch-fd.git",
"author": "yanjun",
"main": "dist/natty-fetch.js",
"jsnext:main": "src/natty-fetch.js",
"files": [
"dist",
"src",
"docs",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"natty-fetch",
"data",
"database",
"db",
"ajax",
"mobile-ajax",
"get",
"post",
"jsonp",
"query",
"fetch",
"micro-ajax",
"mini-ajax",
"standalone-ajax",
"micro-jsonp",
"mini-jsonp",
"standalone-jsonp",
"promise-api"
],
"devDependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"browser-sync": "^2.23.5",
"del-cli": "^1.1.0",
"es5-shim": "^4.5.10",
"expect.js": "^0.3.1",
"express": "4.14.0",
"get-ip": "^2.0.0",
"lie": "^3.1.1",
"mime": "^1.6.0",
"minimist": "^1.2.0",
"mocha": "^5.0.0",
"npm-run-all": "^4.1.2",
"onchange": "3.0.2",
"rollup": "0.36.3",
"rollup-plugin-buble": "0.14.0",
"rollup-plugin-filesize": "1.0.1",
"rollup-plugin-replace": "1.1.1",
"rollup-plugin-uglify": "1.0.1"
},
"scripts": {
"build": "npm run clear && node ./config/rollup.js --env prod --harmony",
"build:dev": "npm run clear && node ./config/rollup.js --env dev --harmony",
"build:test": "node ./config/rollup.js --env test --harmony",
"browse": "browser-sync start -c config/browser-sync.js",
"start": "npm run build:dev && npm run build:test && npm-run-all --parallel server watch:test watch:src browse",
"test": "npm run build:dev",
"watch:test": "onchange \"test/*.spec.js\" -- npm run build:test",
"watch:src": "onchange src -- npm run build:dev",
"server": "node config/server.js",
"clear": "$(npm bin)/del dist"
},
"license": "MIT",
"dependencies": {
"natty-storage": "^2.2.0"
}
}