forked from appcelerator-archive/appc.mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
55
56
57
58
59
60
{
"name": "appc.mongo",
"description": "MongoDB connector",
"version": "1.3.0",
"author": "Jeff Haynie",
"maintainers": [
"Jeff Haynie <[email protected]>",
"Dawson Toth <[email protected]>"
],
"license": "Apache-2.0",
"framework": "none",
"keywords": [
"arrow",
"arrow-connector",
"appcelerator",
"mongo",
"mongodb"
],
"repository": {
"type": "git",
"url": "https://github.com/appcelerator/appc.mongo"
},
"scripts": {
"start": "appc run",
"lint": "standard --fix",
"security": "retire --exitwith 0 --outputpath scan-retire.txt && nsp check --output writefile --warn-only",
"clean": "rimraf ./tmp",
"test": "npm run lint && npm run security && npm run test:unit && npm run clean",
"test:coverage": "nyc check-coverage --lines 90 --functions 90 --branches 70 --statements 90",
"test:unit": "tap ./test/unit/* --color --bail --coverage --coverage-report=html && npm run test:coverage",
"test:integration": "grunt"
},
"private": true,
"dependencies": {
"async": "^1.5.0",
"lodash": "^3.10.1",
"mongodb": "^2.0.47",
"semver": "^5.0.3"
},
"devDependencies": {
"arrow": "^*",
"grunt": "^0.4.5",
"grunt-mocha-test": "^0.13.2",
"mocha": "^1.21.4",
"nsp": "^2.6.3",
"nyc": "^10.1.2",
"request": "^2.81.0",
"retire": "^1.2.12",
"rimraf": "^2.6.1",
"should": "^4.6.5",
"sinon": "^1.17.7",
"standard": "^9.0.1",
"tap": "^10.3.0"
},
"standard": {
"ignore": [
"test/integration/**"
]
}
}