-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "enoki-starterkit",
"version": "1.0.2",
"description": "A little javascript static site generator",
"main": "site/index.js",
"scripts": {
"api": "",
"serve": "cd public && python -m SimpleHTTPServer 8080",
"build": "enoki build -o public/ && browserify site/ -o public/bundle.js -t require-globify -t enoki/transform -t yo-yoify -t es2040",
"start": "enoki dev",
"panel": "enoki panel",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Jon-Kyle <contact@jon-kyle.com> (http://jon-kyle.com)",
"license": "ISC",
"dependencies": {
"brfs": "^1.4.3",
"choo": "^6.0.0",
"enoki": "^1.0.5",
"markdown-it": "^8.4.0",
"nanoassert": "^1.1.0",
"nanocomponent": "^6.4.0",
"object-keys": "^1.0.11",
"object-values": "^1.0.0",
"query-string": "^5.0.0",
"require-globify": "^1.4.1",
"simplemde": "^1.11.2",
"tags-input": "^1.1.1",
"xhr": "^2.4.0",
"xtend": "^4.0.1",
"yo-yoify": "^3.7.3"
},
"devDependencies": {
"browserify": "^14.4.0",
"es2040": "^1.2.6"
}
}