-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.87 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
{
"name": "appc.composite",
"description": "Composite connector",
"version": "2.0.1",
"author": "Dawson Toth",
"maintainers": [
"Dawson Toth <[email protected]>"
],
"license": "Apache-2.0",
"framework": "none",
"keywords": [
"arrow",
"arrow-connector",
"appcelerator"
],
"repository": {
"type": "git",
"url": "https://github.com/appcelerator/appc.composite"
},
"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",
"security": "./security-scan-module.sh",
"clean": "rimraf ./tmp && rimraf dist/* coverage/*",
"test": "grunt"
},
"private": true,
"dependencies": {
"async": "^2.6.1",
"lodash": "^4.17.11",
"semver": "^5.0.3"
},
"devDependencies": {
"appc.arrowdb": "git+https://github.com/appcelerator/appc.arrowdb.git",
"appc.mongo": "git+https://github.com/appcelerator/appc.mongo.git",
"appc.mssql": "git+https://github.com/appcelerator/appc.mssql.git",
"appc.mysql": "git+https://github.com/appcelerator/appc.mysql.git",
"appc.salesforce": "git+https://github.com/appcelerator/appc.salesforce.git",
"arrow": "^*",
"babel-cli": "^6.11.4",
"babel-core": "^6.0.0",
"babel-istanbul": "^0.12.1",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.22.0",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"istanbul": "^0.4.1",
"mocha": "^5.2.0",
"retire": "^2.0.0",
"rimraf": "^2.6.2",
"should": "^13.2.3"
}
}