-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "sobject",
"version": "1.0.4",
"description": "Perform queries and CRUD operations on SalesForce SObjects with minimal setup and a friendly API.",
"repository": "https://github.com/MyPureCloud/sobject",
"main": "dist/index.js",
"scripts": {
"lint": "jshint src && jshint test",
"build": "npm run lint && rm -rf dist && babel src --out-dir dist",
"test": "mocha --compilers js:babel-core/register",
"docs": "jsdoc2md src/*.js > docs/api.md"
},
"keywords": [
"SalesForce",
"SObject",
"database",
"table",
"query",
"CRUD",
"update",
"delete",
"create",
"rest",
"api"
],
"author": "Nathan Hill <[email protected]> (https://github.com/BinaryNate)",
"license": "MIT",
"dependencies": {
"flat": "^2.0.1",
"lodash": "^4.17.4",
"parameter-validator": "^1.0.1",
"request": "^2.80.0",
"request-promise-native": "^1.0.3",
"url": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-latest": "^6.22.0",
"chai": "^3.5.0",
"jsdoc-to-markdown": "^3.0.0",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
}
}