UNPKG

1.57 kBJSONView Raw
1{
2 "name": "mini-tools",
3 "description": "mini tools for express and others",
4 "version": "0.2.5",
5 "author": "Codenautas <codenautas@googlegroups.com>",
6 "license": "MIT",
7 "repository": "codenautas/mini-tools",
8 "contributors": [{
9 "name": "Emilio Platzer", "email": "emilioplatzer@gmail.com"
10 }],
11 "dependencies": {
12 "fs-extra": "~0.26.7",
13 "fs-promise": "~0.5.0",
14 "read-yaml-promise": "~1.0.2",
15
16 "best-globals": "~0.2.4",
17 "best-promise": "~0.2.4"
18 },
19 "devDependencies": {
20 "colors": "~1.1.2",
21 "expect.js": "~0.3.1",
22 "express": "~4.13.4",
23 "istanbul": "~0.4.2",
24 "jade": "~1.11.0",
25 "mocha": "~2.4.5",
26 "sinon": "~1.17.3",
27 "stylus": "~0.54.2",
28 "supertest": "~1.2.0"
29 },
30 "main": "lib/mini-tools.js",
31 "engines": {
32 "node": ">= 0.10.0"
33 },
34 "scripts": {
35 "test": "mocha --reporter spec --bail --check-leaks test/",
36 "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
37 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
38 "start": "node example/server.js"
39 },
40 "jshintConfig": {
41 "asi": false,
42 "curly": true,
43 "forin": true
44 },
45 "eslintConfig": {
46 "env": {
47 "node": false
48 },
49 "rules": {
50 "strict": 0,
51 "no-console": 1,
52 "no-unused-vars": 1
53 }
54 },
55 "qa-control": {
56 "package-version": "0.1.3",
57 "run-in": "server",
58 "test-appveyor": true,
59 "type": "lib",
60 "stage": "designing",
61 "coverage": 100
62 }
63}