wikipathways-api-client
Version:
JS client for the WikiPathways.org webservices API
107 lines (106 loc) • 3.05 kB
JSON
{
"name": "wikipathways-api-client",
"version": "1.1.7",
"description": "JS client for the WikiPathways.org webservices API",
"bin": "bin/wikipathways-api-client",
"main": "es5/index.js",
"module": "esnext/index.js",
"jsnext:main": "esnext/index.js",
"typings": "esnext/index.d.ts",
"files": [
"es5/",
"esnext/",
"dist/",
"bin/"
],
"scripts": {
"build": "npm run compile && mkdirp dist && webpack -p --config webpack.config.js",
"compile": "npm-run-all -p compile:*",
"compile:es5": "mkdirp es5 && tsc --project tsconfig.es5.json",
"compile:esnext": "mkdirp esnext && tsc --project tsconfig.esnext.json",
"docs": "mkdirp docs && typedoc --out docs/ src/index.ts --target ES5",
"gh": "npm-run-all gh:*",
"gh:disablejekyll": "gh-pages --add -d ./ --src .nojekyll",
"gh:content": "gh-pages -d ./ --src '{README.md,.nojekyll,dist/**/*,docs/**/*}' --dest `version`",
"gh:demo": "gh-pages --add -d ./demo/ --src 'index.html' --dest `version`",
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
"prepublish1": "npm run build && npm run docs && npm run gh",
"test": "echo 'add working tests'"
},
"browserify": {
"transform": [
"brfs",
"deglobalify"
]
},
"browser": {
"atob": false,
"btoa": false,
"cheerio": false,
"commander": false,
"inquirer": false,
"jsdom": false,
"xhr2": false,
"./src/XMLResponseParsers.ts": "./src/XMLResponseParsers.browser.ts",
"./es5/XMLResponseParsers.js": "./es5/XMLResponseParsers.browser.js",
"./esnext/XMLResponseParsers.js": "./esnext/XMLResponseParsers.browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wikipathways/wikipathways-api-client-js"
},
"keywords": [
"wikipathways",
"biology",
"pathway"
],
"author": "WikiPathways team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wikipathways/wikipathways-api-client-js/issues"
},
"homepage": "https://github.com/wikipathways/wikipathways-api-client-js",
"dependencies": {
"@types/lodash": "^4.14.62",
"JSONStream": "^1.3.1",
"atob": "^1.1.2",
"colors": "^1.1.2",
"inquirer": "^0.11.0",
"lodash": "^4.17.4",
"ndjson": "^1.5.0",
"rx-extra": "^2.1.0-alpha",
"sax": "^1.1.1",
"urijs": "^1.15.x",
"xhr2": "^0.1.4"
},
"devDependencies": {
"@jfschwarz/gh-pages": "^0.12.1",
"@tridnguyen/version": "^1.0.0",
"commander": "~2.3.0",
"mkdirp": "^0.5.1",
"mockserver": "^1.5.2",
"npm-run-all": "^4.0.2",
"shebang-loader": "0.0.1",
"source-map-loader": "^0.2.1",
"ts-loader": "^2.0.3",
"typedoc": "^0.5.10",
"typescript": "^2.2.2",
"webpack": "^2.4.1"
},
"semverBumper": {
"jsonFiles": [
{
"filepath": "package.json",
"key": "version"
}
],
"grepOptions": {
"include": [],
"exclude": [],
"excludeDir": [
"./dist",
"./node_modules"
]
}
}
}