-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.42 KB
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
{
"name": "mendeley-javascript-sdk",
"version": "0.2.1",
"description": "Mendeley API client-side JavaScript SDK",
"directories": {
"example": "examples"
},
"scripts": {
"test": "node_modules/karma/bin/karma start",
"start": "node examples/app.js",
"build-jsdoc": "node_modules/.bin/jsdoc -d docs/ lib/api.js",
"build-dist": "node bin/build.js > dist/standalone.js && git commit --allow-empty -m'Update standalone build'",
"release-patch": "npm run build-dist && ./node_modules/.bin/mversion patch --no-prefix -m 'Released patch version v%s'",
"release-minor": "npm run build-dist && ./node_modules/.bin/mversion minor --no-prefix -m 'Released minor version v%s'",
"release-major": "npm run build-dist && ./node_modules/.bin/mversion major --no-prefix -m 'Released major version v%s'"
},
"repository": {
"type": "git",
"url": " "
},
"keywords": [
"mendeley",
"sdk",
"api"
],
"license": "Apache-2.0",
"devDependencies": {
"cookie-parser": "^1.3.3",
"express": "^4.9.5",
"jsdoc": "^3.3.0-alpha9",
"karma": "^0.12.23",
"karma-chrome-launcher": "^0.1.4",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^0.2.2",
"karma-phantomjs-launcher": "^0.1.4",
"karma-requirejs": "^0.2.2",
"karma-safari-launcher": "^0.1.1",
"mversion": "^1.3.0",
"requirejs": "^2.1.15",
"simple-oauth2": "^0.2.0"
}
}