Skip to content

Instantly share code, notes, and snippets.

@jwchang0206
Last active March 2, 2020 09:48
Show Gist options
  • Save jwchang0206/78c23602e9f7e5550d788a3ed0e1b1b9 to your computer and use it in GitHub Desktop.
Save jwchang0206/78c23602e9f7e5550d788a3ed0e1b1b9 to your computer and use it in GitHub Desktop.

Revisions

  1. jwchang0206 created this gist Mar 2, 2020.
    24 changes: 24 additions & 0 deletions package.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    {
    "name": "sample",
    "version": "1.0.0",
    "description": "",
    "main": "index.js",
    "scripts": {
    "test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors test/**/*.ts",
    "coverage": "nyc npm run test"
    },
    "keywords": [],
    "author": "",
    "license": "ISC",
    "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.6.9",
    "chai": "^4.2.0",
    "cross-env": "^5.2.0",
    "mocha": "^6.2.0",
    "nyc": "^14.1.1",
    "ts-node": "^8.3.0",
    "typescript": "^3.5.3"
    }
    }