-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 913 Bytes
/
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
{
"name": "posmoni",
"version": "1.0.0",
"description": "Node.js library for the Posmoni API.",
"main": "lib/posmoni.js",
"scripts": {
"test": "npm run test:unit:coverage",
"lint": "eslint --ext .js .",
"test:unit": "NODE_ENV=test mocha --recursive ./tests/unit",
"test:unit:coverage": "NODE_ENV=test istanbul cover _mocha -- --recursive ./tests"
},
"repository": "[email protected]:datawowio/posmoni-node.git",
"author": "datawow.io",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "4.1.0",
"chai-as-promised": "7.1.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.2",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"istanbul": "^0.4.5",
"mocha": "3.4.2",
"sinon": "2.3.8",
"sinon-chai": "2.12.0"
}
}