-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "WikiZen",
"version": "1.0.0",
"description": "Minimalistic Markdown-based wiki",
"main": "wikizen.js",
"directories": {
"test": "test"
},
"dependencies": {
"diff-match-patch": "^1.0.0",
"marked": "^0.3.3",
"react": "^0.13.2"
},
"devDependencies": {
"browserify": "^10.0.0",
"gulp": "^3.9.1",
"gulp-if": "^1.2.5",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.1.0",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"http-server": "^0.8.0",
"less": "^2.5.0",
"lodash.assign": "^3.1.0",
"nodeunit": "^0.9.1",
"react-tools": "^0.13.2",
"reactify": "^1.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.1",
"yargs": "^3.8.0"
},
"scripts": {
"test": "jsx --harmony src/ test/builds/ && nodeunit",
"server": "http-server"
},
"repository": {
"type": "git",
"url": "https://github.com/chmllr/wikizen"
},
"keywords": [
"wiki",
"markdown"
],
"author": "Christian Müller <[email protected]> (http://github.com/chmllr)",
"license": "ISC",
"bugs": {
"url": "https://github.com/chmllr/wikizen/issues"
},
"homepage": "https://github.com/chmllr/wikizen"
}