-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "segmentum",
"version": "2.1.2",
"description": "Unofficial Segment.io Management node.js SDK",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"check:style": "eslint .",
"test": "_mocha -- $npm_package_config_mocha && npm run check:style",
"test:coverage:run": "istanbul cover _mocha -- $npm_package_config_mocha",
"test:coverage:check": "istanbul check-coverage --functions 80",
"test:coverage": "npm run test:coverage:run && npm run test:coverage:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koalazak/segmentum.git"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.1.2",
"istanbul": "^0.4.0",
"semistandard": "^9.1.0",
"eslint": "^3.8.0",
"eslint-config-standard": "^6.2.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"proxyquire": "^1.7.10"
},
"dependencies": {
"cheerio": "^0.22.0",
"ramda": "^0.24.1",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"keywords": [
"unofficial",
"segment.io",
"segment",
"api",
"management",
"sdk",
"segmentum",
"scrap",
"scraping",
"analytics",
"segmentio",
"client",
"api"
],
"author": "koalazak <zak.tux@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koalazak/segmentum/issues"
},
"homepage": "https://github.com/koalazak/segmentum#readme"
}