-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 874 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 874 Bytes
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
{
"name": "palm",
"version": "0.0.24",
"description": "A tree, that can talk.",
"main": "index.js",
"repository": "https://github.com/frenchbread/palm.git",
"author": "Damir Mustafin <frenchthebread@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"build": "npm run clean && ./node_modules/.bin/babel src --out-dir lib",
"clean": "./node_modules/.bin/rimraf ./lib",
"prepublish": "npm run build",
"test": "node test"
},
"dependencies": {
"axios": "^0.16.1",
"chalk": "^2.2.0",
"concat-stream": "^1.6.0",
"form-data": "^2.1.4",
"lodash": "^4.17.4",
"moment": "^2.18.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-preset-latest": "^6.24.1",
"eslint": "^3.19.0",
"rimraf": "^2.6.1",
"standard": "^10.0.2"
}
}