-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "memobird-node",
"version": "1.3.3",
"description": "unofficial memobird node sdk",
"main": "index.js",
"directories": {
"test": "test",
"lib": "lib",
"dist": "dist"
},
"scripts": {
"test": "eslint lib/index.js && mocha test/lib/index.js --require babel-core/register",
"start": "babel-node example.js --presets es2015",
"build": "babel lib --presets es2015 --out-dir dist",
"dev": "babel lib --presets es2015 -o --watch dist/index.js",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jingxinxin/memobird-node.git"
},
"keywords": [
"gugu",
"memobird",
"node"
],
"author": "Jack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jingxinxin/memobird-node/issues"
},
"homepage": "https://github.com/jingxinxin/memobird-node#readme",
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-react": "^4.1.0",
"mocha": "^2.4.5"
},
"dependencies": {
"babel-cli": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bluebird": "^3.3.4",
"gm": "^1.21.1",
"iconv-lite": "^0.4.13",
"lodash": "^4.17.4",
"request-promise": "^2.0.1"
}
}