-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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": "lokum",
"version": "0.2.9",
"description": "Host a website from JSON API. e.g. Trello",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"index.js",
"lib",
"src",
"start.js"
],
"scripts": {
"start": "node ./start.js",
"build": "babel --ignore '**/*.test.js' --presets es2015 -d lib/ src/",
"prepublish": "npm run build",
"test": "ava",
"site-build": "node ./services/buildWebStaticFromTrelloBoard/run.js"
},
"author": "Patrick Smith",
"license": "MIT",
"dependencies": {
"axios": "^0.15.2",
"cheerio": "^0.22.0",
"creed": "^1.1.1",
"hapi": "^16.1.0",
"lodash": "^4.16.4",
"ramda": "^0.23.0",
"remarkable": "^1.7.1",
"silverscreen": "^0.2.0",
"speakeasy": "^2.0.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RoyalIcing/lokum.git"
},
"keywords": [
"lokum",
"web",
"server",
"trello"
],
"bugs": {
"url": "https://github.com/RoyalIcing/lokum/issues"
},
"homepage": "https://github.com/RoyalIcing/lokum#readme"
}