-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
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
{
"name": "@foxcomm/api-js",
"version": "1.3.1",
"description": "Javascript Library for interacting with FoxCommerce API",
"main": "lib/index.js",
"publishConfig": {
"registry": "https://npm.foxcommerce.com:4873"
},
"scripts": {
"test": "mocha test",
"build": "babel src -d lib",
"docs": "APIARY_DOCS_PATH=../phoenix-scala/docs/api/docs/objects node ./bin/import-docs.js && node ./bin/make-docs.js",
"prepublish": "npm run build",
"flow": "./node_modules/.bin/flow check",
"lint": "eslint .",
"fix-lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FoxComm/api-js.git"
},
"keywords": [
"foxcommerce",
"api"
],
"author": "FoxCommerce team",
"license": "ISC",
"bugs": {
"url": "https://github.com/FoxComm/api-js/issues"
},
"homepage": "https://github.com/FoxComm/api-js#readme",
"dependencies": {
"debug": "^2.2.0",
"jwt-decode": "^2.0.1",
"lodash": "^4.17.4",
"postinstall-build": "^0.2.1",
"superagent": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^7.2.3",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.9.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-1": "^6.5.0",
"escape-html": "^1.0.3",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.47.0",
"leafdoc": "github:anru/Leafdoc#v1.1",
"mkdirp": "^0.5.1",
"mocha": "^2.5.2",
"nock": "^8.0.0",
"prettier": "^1.4.4"
}
}