This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "commercecloud-ocapi-client",
"version": "0.2.0",
"description": "An ES6 JavaScript Client for Salesforce Open Commerce API",
"repository": "https://github.com/mobify/commercecloud-ocapi-client",
"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.1.2",
"btoa": "^1.1.2",
"querystring": "^0.2.0",
"superagent": "^5.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"eslint": "^6.0.1",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "2.3.0",
"expect.js": "^0.3.1",
"express": "^4.16.2",
"jsdoc": "^3.6.2",
"mobify-code-style": "^2.8.5",
"mocha": "^6.1.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"
}
}