-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "jsxnat",
"description": "An isomorphic XNAT API Wrapper for JavaScript",
"version": "1.1.1",
"homepage": "https://github.com/WoonchanCho/jsxnat/#readme",
"license": "MIT",
"keywords": [
"jsxnat",
"xnat"
],
"source": "src/index.js",
"main": "dist/node/jsxnat.js",
"module": "dist/node/jsxnat.module.js",
"unpkg": "dist/node/jsxnat.umd.js",
"browser": "dist/web/jsxnat.umd.js",
"typings": "main.d.ts",
"scripts": {
"dev": "nodemon -r esm src/dev.js",
"build": "yarn build:web && yarn build:node && yarn build:docs",
"build:web": "microbundle --external none --target web --output dist/web --name JsXnat --compres",
"build:node": "microbundle --external none --target node --output dist/node",
"build:docs": "jsdoc -c jsdoc.conf.js -r README.md",
"build:type": "tsc",
"watch:doc-src": "npx nodemon --exec 'yarn build:docs' --watch src",
"watch:doc-output": "npx livereload out",
"watch:docs": "yarn watch:doc-output & yarn watch:doc-src",
"clean": "shx rm -rf docs && shx rm -rf dist",
"test": "mocha -r esm",
"semantic-release": "semantic-release"
},
"devDependencies": {
"chai": "^4.3.3",
"eslint": "^7.21.0",
"esm": "^3.2.25",
"jsdoc": "^3.6.6",
"livereload": "^0.9.1",
"microbundle": "^0.12.4",
"mocha": "^8.3.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"semantic-release": "^17.4.1",
"shx": "^0.3.3",
"typescript": "^4.1.3"
},
"dependencies": {
"isomorphic-form-data": "^2.0.0",
"isomorphic-unfetch": "^3.1.0",
"js-base64": "^3.6.0",
"query-string": "^6.13.7",
"xmldom": "^0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/WoonchanCho/jsxnat.git"
},
"release": {
"branches": [
"master"
]
}
}