forked from Laverna/laverna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "laverna",
"version": "1.0.3-beta",
"description": "the client package for the laverna web files",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Laverna/laverna"
},
"scripts": {
"start": "node ./server.js",
"setup": "npm install && npm i babel-cli && gulp build",
"electron": "NODE_ENV=dev electron .",
"test": "gulp test:run",
"cover": "rm -rf _dev/cover && npm run cover:generate",
"cover:generate": "nyc --reporter=lcov --require babel-register gulp tape && nyc report",
"cover:check": "npm run cover && nyc check-coverage --lines 95 --functions 95 --branches 95",
"jsdoc": "jsdoc app/scripts -r -d _dev/jsdoc && gulp serve --root=./_dev/jsdoc --dev",
"gulpdoc": "jsdoc gulps/ gulpfile.js -r -d _dev/gulpdoc && gulp serve --root=./_dev/gulpdoc --dev",
"eslint": "eslint -c .eslintrc.js --fix --ignore-pattern 'app/scripts/modules' ./app/scripts/",
"prepub": "npm test && npm run cover && npm run cover:check"
},
"main": "electron.js",
"nyc": {
"report-dir": "_dev/cover",
"include": [
"app/scripts/**/*.js"
]
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"backbone": "^1.3.3",
"backbone.marionette": "^3.5.1",
"backbone.radio": "^2.0.0",
"base64-js": "^1.2.1",
"blueimp-canvas-to-blob": "^3.14.0",
"bootstrap": "^3.3.7",
"codemirror": "^5.32.0",
"debug": "^3.1.0",
"device-detect.js": "^0.2.7",
"dropbox": "^2.5.13",
"dropzone": "^5.2.0",
"es6-promise": "^4.2.2",
"fast-json-patch": "^2.0.6",
"fastclick": "^1.0.6",
"file-saver": "^1.3.3",
"finalhandler": "^1.1.1",
"fuse.js": "^3.2.0",
"hammerjs": "^2.0.8",
"i18next": "^10.2.1",
"i18next-xhr-backend": "^1.5.0",
"jquery": "^3.2.1",
"js-md5": "^0.7.3",
"jsondiffpatch": "^0.2.5",
"jszip": "^3.1.5",
"localforage": "^1.7.2",
"markdown-it": "^8.4.0",
"markdown-it-hashtag": "^0.4.0",
"markdown-it-math": "^4.1.0",
"markdown-it-sanitizer": "^0.4.3",
"modernizr": "^3.6.0",
"modernizr-loader": "^1.0.1",
"mousetrap": "^1.6.1",
"openpgp": "^2.6.1",
"prismjs": "^1.9.0",
"serve-static": "^1.13.2",
"simple-peer": "^8.2.0",
"sjcl": "^1.0.7",
"socket.io-client": "^2.0.4",
"turndown": "^4.0.1",
"turndown-plugin-gfm": "^1.0.1",
"underscore": "1.8.3",
"uuid": "^3.1.0",
"xml-js": "^1.6.2",
"xss": "^0.3.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.21.0",
"del": "^3.0.0",
"eslint": "^4.19.1",
"faucet": "^0.0.1",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-electron": "0.1.3",
"gulp-htmlmin": "^4.0.0",
"gulp-jsonlint": "^1.2.0",
"gulp-less": "^3.4.0",
"gulp-load-plugins": "^1.5.0",
"gulp-manifest": "^0.1.1",
"gulp-nightwatch": "^0.3.2",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sequence": "^0.4.6",
"gulp-shell": "^0.6.3",
"gulp-util": "^3.0.8",
"jsdoc": "^3.5.5",
"jsdom": "^11.12.0",
"merge-stream": "^1.0.1",
"node-localstorage": "^1.3.0",
"nyc": "^11.4.1",
"proxyquire": "^1.8.0",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"sinon": "^4.1.3",
"tape": "^4.8.0",
"webpack": "^3.10.0",
"webpack-stream": "^4.0.0",
"worker-loader": "^1.1.0"
},
"engines": {
"node": ">=0.8.0"
},
"optionalDependencies": {}
}