forked from appcelerator-archive/appc.odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "appc.odata",
"description": "OData connector",
"version": "1.0.4",
"author": "Vladimir Trifonov",
"license": "",
"framework": "none",
"keywords": [
"appcelerator",
"arrow"
],
"repository": {},
"private": true,
"dependencies": {
"appc-connector-utils": "0.0.9",
"async": "2.1.5",
"fast-xml-parser": "2.3.0",
"joi": "10.2.2",
"mixin-deep": "1.2.0",
"npm": "4.3.0",
"odata": "0.3.0",
"ramda": "0.23.0",
"request": "2.81.0",
"semver": "5.3.0"
},
"devDependencies": {
"arrow": "^*",
"eslint": "3.17.1",
"eslint-config-standard": "7.0.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "2.1.1",
"mockery": "2.0.0",
"nsp": "2.6.3",
"nyc": "10.1.2",
"retire": "1.2.12",
"rimraf": "2.6.1",
"sinon": "1.17.7",
"sinon-stub-promise": "4.0.0",
"standard": "9.0.1",
"tap": "10.3.0",
"tap-mocha-reporter": "3.0.3"
},
"scripts": {
"start": "appc run",
"lint": "standard --fix",
"check-security": "nsp check || true",
"check-deps": "retire || true",
"clean": "rimraf ./tmp",
"checks": "npm run check-deps && npm run check-security",
"test:coverage": "nyc check-coverage --lines 90 --functions 95 --branches 85 --statements 90",
"test": "npm run checks && npm run lint && npm run test:unit && npm run clean",
"test:unit": "tap ./test/unit/* --color --bail --coverage --coverage-report=html && npm run test:coverage",
"test:integration": "tap ./test/integration/* --color --bail"
}
}