forked from scienceai/crossref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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
{
"name": "crossref",
"version": "1.1.0",
"description": "Client library for the Crossref API",
"main": "index.js",
"scripts": {
"build-browser": "browserify crossref.js | uglifyjs - -c warnings=false -m > crossref.min.js",
"build-node": "babel --presets es2015 source.js --out-file index.js",
"build": "npm run build-node && npm run build-browser",
"watch-browser": "watchify crossref.js --verbose --ignore-watch=\"**/node_modules/**\" --ignore-watch=\"index.js\" -o 'uglifyjs - -c warnings=false -m > crossref.min.js'",
"watch-node": "babel -w --presets es2015 source.js --out-file index.js",
"watch": "concurrently --kill-others --prefix command 'npm run watch-node' 'npm run watch-browser'",
"test": "ava",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": "scienceai"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "https://github.com/scienceai/crossref.git"
},
"keywords": [
"Crossref",
"API",
"client"
],
"author": "Robin Berjon <robin@standardanalytics.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/crossref/issues"
},
"homepage": "https://github.com/scienceai/crossref",
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "^6.18.0",
"babel-core": "6.18.0",
"babel-preset-es2015": "6.18.0",
"babelify": "7.3.0",
"browser-request": "0.3.3",
"browserify": "13.1.1",
"chalk": "1.1.3",
"concurrently": "3.1.0",
"eslint-config-scienceai": "2.4.0",
"uglify-js": "2.7.4",
"watchify": "3.7.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"lodash": "4.16.4",
"request": "2.76.0"
},
"browser": {
"request": "browser-request"
}
}