forked from variety/variety
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.69 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
{
"name": "variety",
"version": "1.5.1",
"description": "A MongoDB schema analyzer",
"keywords": ["MongoDB", "Variety", "schema", "schema analyzer", "schema analysis", "NoSQL"],
"homepage": "https://github.com/variety/variety#readme",
"bugs": "https://github.com/variety/variety/issues",
"license": "MIT",
"author": {
"name": "James Kirk Cropcho",
"web": "https://twitter.com/Cropcho"
},
"contributors": [
{
"name": "Tomáš Dvořák",
"email": "[email protected]",
"web": "https://www.tomas-dvorak.cz/"
},
{
"name": "Eve Freeman",
"web": "https://twitter.com/wefreema"
},
{
"name": "James Kirk Cropcho",
"web": "https://twitter.com/Cropcho"
} ],
"files": [ "variety.js", "bin/variety" ],
"main": "variety.js",
"bin": "./bin/variety",
"repository": {
"type": "git",
"url": "https://github.com/variety/variety.git"
},
"scripts": {
"lint": "./node_modules/.bin/eslint . .eslintrc.js --ignore-pattern '!.eslintrc.js'",
"lint:fix": "./node_modules/.bin/eslint . .eslintrc.js --ignore-pattern '!.eslintrc.js' --fix",
"test": "npm run lint && npm run test:docker",
"test:docker": "./spec/bin/test-on-docker",
"test:mocha": "./node_modules/.bin/mocha --compilers js:babel-core/register --require babel-polyfill --recursive --reporter spec --timeout 15000 spec"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"child-process-promise": "^1.1.0",
"eslint": "^2.4.0",
"mocha": "^2.4.5",
"mongodb": "^2.1.7"
}
}