forked from mobify/commercecloud-ocapi-client
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
{
"name": "commercecloud-ocapi-client",
"version": "0.1.4",
"description": "An ES6 JavaScript Client for Salesforce Open Commerce API",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/commercecloud-ocapi-client.cjs.js",
"module": "dist/commercecloud-ocapi-client.es.js",
"browser": {
"fs": false
},
"files": [
"dist"
],
"scripts": {
"copyright:lint": "copyright 'src/**/*.js' 'bin/**/*.js' 'test/**/*.js'",
"copyright:fix": "copyright --fix --update 'src/*.js' 'src/**/*.js' 'test/*.js' 'test/**/*.js'",
"docs": "jsdoc -c .jsdocrc",
"lint": "npm run lint:js && npm run copyright:lint",
"lint:js": "eslint '**/*.js'",
"lint:fix": "npm run lint:js -- --fix",
"test": "NODE_ENV=test mocha --require babel-core/register $(find test/api -name '*.spec.js')",
"prebuild": "npm run lint",
"build": "NODE_ENV=production rollup -c",
"prepack": "npm run build"
},
"dependencies": {
"atob": "^2.0.3",
"btoa": "^1.1.2",
"querystring": "^0.2.0",
"superagent": "3.5.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "6.18.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "3.19.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "2.3.0",
"expect.js": "^0.3.1",
"express": "^4.16.2",
"jsdoc": "^3.4.3",
"mobify-code-style": "2.8.1",
"mocha": "~2.3.4",
"rollup": "^0.49.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "1.17.3"
}
}