-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
{
"name": "botify-sdk",
"version": "1.0.0-beta5",
"description": "Botify Rest API SDK",
"author": "Botify <labs@botify.com>",
"license": "MIT",
"main": "./lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint .",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"check": "npm run lint && npm run test",
"build:lib": "babel src --out-dir lib",
"build:dist": "webpack --config webpack.config.production.js",
"build": "npm run clean && npm run build:lib && npm run build:dist",
"stats": "webpack --config webpack.config.stats.js && npm run clean",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run build",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git://github.com/botify-labs/botify-sdk-js.git"
},
"homepage": "https://github.com/botify-labs/botify-sdk-js",
"bugs": "https://github.com/botify-labs/botify-sdk-js/issues",
"keywords": [
"botify",
"analytics",
"seo",
"crawler",
"sdk"
],
"engines": {
"node": ">=0.10"
},
"dependencies": {
"botify-sdk-middlewares": "^0.11.0",
"superagent": "^1.5.0",
"string": "^3.1.1"
},
"devDependencies": {
"babel": "^5.0.8",
"babel-core": "^5.0.8",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.0.0",
"chai": "^3.0.0",
"eslint": "^1.4.1",
"eslint-config-airbnb": "^0.1.0",
"expect": "^1.6.0",
"fs-extra": "^0.26.3",
"mocha": "^2.2.5",
"nock": "^8.0.0",
"replace": "^0.3.0",
"require-all": "^2.0.0",
"rimraf": "^2.4.3",
"sinon": "^1.17.1",
"stats-webpack-plugin": "^0.2.2",
"through2": "^2.0.0",
"unzip": "^0.1.11",
"webpack": "^1.9.5",
"yargs": "^4.7.1"
}
}