-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "elemental-live-client",
"version": "0.5.1",
"description": "JS library to communicate with Elemental live API",
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "mocha --require babel-core/register --reporter spec --timeout 5000",
"coverage": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --require babel-core/register --reporter spec",
"build": "babel -s -d dist lib",
"lint": "eslint lib test"
},
"main": "./lib/main",
"repository": "[email protected]:NYTimes/elemental-live-client.git",
"author": "The New York Times Company",
"license": "Apache-2.0",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"istanbul": "v1.1.0-alpha.1",
"mocha": "^8.2.1",
"sinon": "^9.2.2"
},
"dependencies": {
"dateformat": "^4.4.1",
"request": "^2.88.2",
"xml2js": "^0.4.23"
}
}