gersemi
Version:
88 lines (87 loc) • 2.38 kB
JSON
{
"name": "gersemi",
"title": "TypeScript Client for Genesis API",
"version": "0.1.5",
"description": "gersemi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/esha/gersemi.git"
},
"author": {
"name": "ESHA Research",
"email": "nathan@esha.com",
"url": "http://www.esha.com"
},
"keywords": [
"genesis",
"api",
"posterior",
"ESHA",
"client",
"soap"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build && git commit -m \"$npm_package_version\" README.md package* lib && git tag $npm_package_version && git push && git push --tags",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"proxy": "node __tests__/server.js",
"jest": "jest",
"test": "npm-run-all -p proxy jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"release": "bump -y package.json && npm publish"
},
"dependencies": {
"case": "^1.5.4",
"moment": "^2.20.1",
"posterior": "^0.22.7",
"store2": "^2.6.0"
},
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^8.0.0",
"body-parser": "^1.18.2",
"bump-cli": "^1.1.3",
"cors": "^2.8.4",
"coveralls": "^2.0.0",
"express": "^4.16.2",
"jest": "^22.1.3",
"jest-environment-jsdom": "^22.0.1",
"jest-environment-node-debug": "^2.0.0",
"logfmt": "^1.2.0",
"morgan-body": "^2.0.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.5.2",
"request": "^2.83.0",
"rimraf": "^2.0.0",
"ts-jest": "^22.0.1",
"ts-node": "^3.2.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.6.2"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "jsdom"
}
}