-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "warewolf",
"version": "2.0.6",
"description": "Savage Async Middleware",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "cross-env BABEL_ENV=commonjs mocha test/index --compilers js:babel-register --recursive",
"memory": "babel-node test/memory-leak-check",
"test:watch": "npm test -- --watch",
"test:examples": "babel-node examples/",
"cover": "cross-env BABEL_ENV=commonjs istanbul cover _mocha -- --compilers js:babel-register --recursive",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hixme/warewolf.git"
},
"keywords": [
"middleware",
"connect",
"module",
"node",
"javascript"
],
"author": "Matthew Drake [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/hixme/warewolf/issues"
},
"homepage": "https://github.com/hixme/warewolf#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"cross-env": "^3.0.0",
"eslint": "^3.6.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.0.0-alpha",
"mocha": "^3.0.2",
"rimraf": "^2.5.4"
}
}