-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "uhttp",
"description": "A micro ajax http library with a unified api for browsers and nodejs",
"version": "2.0.1",
"repository": "https://github.com/Flux159/uhttp",
"homepage": "http://flux159.github.io/uhttp/",
"keywords": [
"ajax",
"http",
"nodejs",
"client"
],
"browser": "./browserIndex.js",
"scripts": {
"build": "grunt build",
"test": "NODE_ENV=test node node_modules/.bin/mocha \"test/testserver.js\"",
"test-coverage": "NODE_ENV=test node node_modules/.bin/mocha -r blanket -R html-cov > coverage/coverage.html"
},
"devDependencies": {
"mocha": "4.0.1",
"jsdom": "11.3.0",
"grunt": "1.0.1",
"grunt-shell": "2.1.0",
"grunt-banner": "0.6.0",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-uglify": "3.1.0",
"jshint-stylish": "2.2.1",
"express": "4.16.2",
"morgan": "1.9.0",
"body-parser": "1.18.2",
"method-override": "2.3.10",
"chai": "4.1.2",
"blanket": "1.2.3",
"connect-multiparty": "2.0.0"
},
"config": {
"blanket": {
"pattern": [
"src/**/*.js"
]
}
},
"license": "MIT"
}