-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "appc.salesforce",
"description": "Salesforce connector",
"version": "2.0.1",
"author": "Axway R&D",
"license": "Apache-2.0",
"framework": "none",
"keywords": [
"arrow",
"arrow-connector",
"appc-cli-plugin",
"salesforce",
"appcelerator"
],
"repository": {
"type": "git",
"url": "https://github.com/appcelerator/appc.salesforce"
},
"files": [
"dist"
],
"main": "dist/index.js",
"private": true,
"dependencies": {
"appc-connector-utils": "https://github.com/appcelerator/appc-connector-utils",
"async": "^2.6.1",
"jsforce": "^1.9.1",
"lodash": "^4.17.11",
"semver": "^5.0.3"
},
"devDependencies": {
"arrow": "^*",
"babel-cli": "^6.11.4",
"babel-core": "^6.0.0",
"babel-istanbul": "^0.12.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-stage-2": "^6.22.0",
"grunt": "^1.0.3",
"grunt-appc-js": "^2.1.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.1",
"mocha": "^5.2.0",
"mockery": "^2.0.0",
"nyc": "^13.1.0",
"request": "^2.60.0",
"retire": "^2.0.0",
"rimraf": "^2.6.1",
"should": "^13.2.3",
"sinon": "^7.0.0",
"tap": "^12.0.1"
},
"scripts": {
"start": "appc run",
"build": "npm run clean && npm run build:dev && npm run security",
"build:dev": "npm run build:dist",
"build:dist": "babel -d ./dist ./lib",
"lint": "standard --fix",
"security": "retire --exitwith 0 --package --outputformat json --outputpath scan-retire.json && npm audit --registry https://registry.npmjs.org --json > scan-audit.json || true",
"clean": "rimraf ./tmp && rimraf dist/* coverage/*",
"test": "npm run security && npm run test:unit && npm run clean",
"test:coverage": "nyc check-coverage --lines 90 --functions 85 --branches 85 --statements 90",
"test:unit": "tap ./test/unit/* --color --bail --coverage --coverage-report=html && npm run test:coverage",
"test:integration": "grunt"
},
"standard": {
"ignore": [
"test/integration/**"
]
}
}