-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "maki",
"version": "0.1.1",
"description": "A Dropbox-based Personal Wiki Engine",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/makiwiki/maki.git"
},
"scripts": {
"start": "http-server ./dist -o",
"lint": "eslint './src/**/*.js'",
"test": "npm run lint && npm run build",
"watch": "watchify ./src/index.js -o ./dist/index.js",
"build": "browserify ./src/index.js -o ./dist/index.js"
},
"author": "nolze",
"license": "GPL-3.0",
"dependencies": {
"dropbox": "^5.2.1",
"es6-promise": "^4.2.8",
"markdown-it": "^11.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-katex": "^2.0.3",
"mithril": "^2.0.4",
"query-string": "^6.13.1"
},
"devDependencies": {
"browserify": "^16.5.2",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"http-server": "^0.12.3",
"uglify-js": "^3.10.3",
"watchify": "^3.11.1"
}
}