-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
{
"name": "lk-replay",
"version": "1.3.0-rc1",
"description": "Command line utility to replay events",
"main": "lib/bin/lk-replay.js",
"bin": {
"lk-replay": "./lib/bin/lk-replay.js"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"coverage": "NODE_ENV=test babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --require babel-polyfill --recursive",
"codecov": "codecov",
"start-s3": "mkdir -p /tmp/s3rver_test & s3rver -h localhost -p 4567 -d /tmp/s3rver_test",
"dev:test": "npm test -- --watch",
"dev": "npm-run-all -p dev:test",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --require babel-polyfill --recursive"
},
"author": "Team Wattellina <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lk-architecture/lk-replay.git"
},
"bugs": {
"url": "https://github.com/lk-architecture/lk-replay/issues"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"codecov": "^1.0.1",
"eslint": "^2.8.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"npm-run-all": "^1.8.0",
"s3rver": "0.0.14",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"aws-sdk": "^2.3.7",
"babel-polyfill": "^6.7.4",
"bluebird": "^3.3.5",
"bluebird-retry": "^0.6.1",
"bunyan": "^1.8.1",
"moment": "^2.13.0",
"node-uuid": "^1.4.7",
"promise-retry": "^1.1.0",
"ramda": "^0.21.0",
"s3": "^4.4.0",
"validator": "^5.2.0",
"yargs": "^4.6.0"
}
}