-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "think-raw-body",
"description": "raw body middleware for ThinkJS 2.2.12,you can get `text/plain(raw)` type data,when you used 'this.post()' in controller.",
"version": "1.0.3",
"author": {},
"scripts": {
"test": "mocha --reporter spec --timeout 5000 --recursive test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 5000 --recursive -R spec test/",
"compile": "babel --loose all --optional runtime --stage 0 --modules common src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"contributors": [],
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "5.8.25"
},
"devDependencies": {
"mocha": "1.20.1",
"istanbul": "0.4.0",
"babel": "5.8.23",
"thinkjs": "2.x.x",
"eslint": "1.8.0",
"babel-eslint": "4.1.3"
},
"keywords": [
"thinkjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flftfqwxf/think-raw-body.git"
},
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/flftfqwxf/think-raw-body/issues"
}
}