-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "libzotero",
"version": "0.1.13",
"description": "javascript libZotero",
"main": "lib/libzotero.js",
"scripts": {
"build": "./node_modules/.bin/gulp",
"dev": "./node_modules/.bin/gulp dev",
"flow": "./node_modules/.bin/flow; test $? -eq 0 -o $? -eq 2",
"test": "istanbul cover ./node_modules/.bin/_mocha --compilers js:babel-core/register ./test/**/*.spec.js",
"prepublish": "./node_modules/.bin/gulp prepublish"
},
"keywords": [
"Zotero"
],
"author": "Faolan C-P",
"license": "AGPL-3.0",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.9.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"fetch-mock": "^5.0.5",
"flow-bin": "^0.23.1",
"gulp": "3.9.0",
"gulp-babel": "^6.1.1",
"gulp-concat": "2.6.0",
"gulp-filter": "3.0.1",
"gulp-if": "2.0.0",
"gulp-plumber": "1.0.1",
"gulp-rename": "1.2.2",
"gulp-replace-task": "0.11.0",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"es6-promise": "^3.1.2",
"node-fetch": "^1.6.0",
"spark-md5": "^2.0.2",
"striptags": "^2.1.1",
"whatwg-fetch": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fcheslack/libZoteroJS"
}
}