-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "abbreviso",
"version": "1.2.0",
"description": "Journal title abbreviation per ISO-4 standard.",
"main": "AbbrevIso.js",
"scripts": {
"start": "./server.js",
"test": "./test.js",
"rollup": "rollup AbbrevIso.js -o browserBundle.js --f iife --name AbbrevIso && rollup AbbrevIso.js -o nodeBundle.js --f cjs --name AbbrevIso"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcinwrochna/abbrevIso.git"
},
"author": "Marcin Wrochna (https://github.com/marcinwrochna/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcinwrochna/abbrevIso/issues"
},
"homepage": "https://github.com/marcinwrochna/abbrevIso#readme",
"dependencies": {
"bunyan": "^1.8.12",
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.9.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rollup": "*"
}
}