|
| 1 | +{ |
| 2 | + "name": "dnotebook-server", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "", |
| 5 | + "main": "build/index.js", |
| 6 | + "types": "build/index.d.ts", |
| 7 | + "directories": { |
| 8 | + "test": "test" |
| 9 | + }, |
| 10 | + "scripts": { |
| 11 | + "start": "node build/index.js", |
| 12 | + "test": "nyc mocha --require ts-node/register tests/**/*.test.ts", |
| 13 | + "test:clean": "yarn build:clean && yarn test", |
| 14 | + "dev": "nodemon", |
| 15 | + "build": "tsc", |
| 16 | + "build:clean": "rimraf ./build && tsc", |
| 17 | + "lint": "eslint ./src", |
| 18 | + "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", |
| 19 | + "coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=lcov", |
| 20 | + "patch": "npm version patch" |
| 21 | + }, |
| 22 | + "keywords": [], |
| 23 | + "author": "", |
| 24 | + "license": "ISC", |
| 25 | + "devDependencies": { |
| 26 | + "@babel/cli": "^7.10.5", |
| 27 | + "@babel/core": "^7.10.5", |
| 28 | + "@babel/plugin-transform-runtime": "^7.12.10", |
| 29 | + "@babel/preset-env": "^7.10.4", |
| 30 | + "@babel/register": "^7.10.1", |
| 31 | + "@types/chai": "^4.2.19", |
| 32 | + "@types/express": "^4.17.13", |
| 33 | + "@types/mocha": "^8.2.2", |
| 34 | + "@types/node": "^16.11.7", |
| 35 | + "chai": "^4.2.0", |
| 36 | + "coveralls": "^3.1.0", |
| 37 | + "dotenv": "^10.0.0", |
| 38 | + "eslint": "^7.1.0", |
| 39 | + "mocha": "^7.2.0", |
| 40 | + "nodemon": "^2.0.7", |
| 41 | + "nyc": "^15.1.0", |
| 42 | + "rimraf": "^3.0.2", |
| 43 | + "ts-node": "^10.4.0", |
| 44 | + "typescript": "^4.4.4", |
| 45 | + "yarn": "^1.22.10" |
| 46 | + }, |
| 47 | + "nyc": { |
| 48 | + "reporter": [ |
| 49 | + "lcov", |
| 50 | + "text" |
| 51 | + ] |
| 52 | + }, |
| 53 | + "dependencies": { |
| 54 | + "express": "^4.17.1" |
| 55 | + } |
| 56 | +} |
0 commit comments