-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "smartling-sdk",
"version": "0.2.2",
"description": "Javascript SDK for Smartling",
"main": "smartling.js",
"config": {
"blanket": {
"pattern": "smartling.js"
},
"travis-cov": {
"threshold": 80
}
},
"scripts": {
"test": "npm run unit && npm run ci-coverage",
"ci-coverage": "mocha -r blanket -R travis-cov",
"record-unit": "REPLAY=record mocha ./test/smartling-test.js --config=./config/integration.json --delay=1000",
"integration": "REPLAY=bloody mocha ./test/smartling-test.js --config=./config/integration.json --delay=1000",
"unit": "mocha ./test/smartling-test.js --config=./config/unit.json"
},
"repository": {
"type": "git",
"url": "https://github.com/hightail/smartling-sdk.git"
},
"keywords": [
"smartling",
"sdk",
"api"
],
"author": "Justin Fiedler",
"license": "ISC",
"bugs": {
"url": "https://github.com/hightail/smartling-sdk/issues"
},
"homepage": "https://github.com/hightail/smartling-sdk",
"dependencies": {
"q": "^1.0.1",
"request": "^2.37.0",
"lodash": "^2.4.1",
"mkdirp": "^0.5.0"
},
"devDependencies": {
"chai": "^1.9.1",
"expect": "^0.1.1",
"minimist": "^0.2.0",
"mocha": "^1.20.1",
"replay": "^1.10.3",
"blanket": "^1.1.6",
"travis-cov": "^0.2.5"
}
}