dnote/jslib/package.json
Sung Won Cho 3883a076ef
Lint TypeScript (#349)
* extract dep

* Lint

* Lint

* Fix

* Fix build
2019-11-25 12:24:23 +08:00

30 lines
787 B
JSON

{
"name": "jslib",
"repository": "https://github.com/dnote/dnote",
"version": "0.1.0",
"description": "An internal JavaScript SDK for Dnote",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "../node_modules/.bin/eslint ./src --ext .ts,.tsx,.js"
},
"author": "Monomax Software Pty Ltd",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@types/history": "^4.7.3",
"history": "^4.10.1",
"lodash": "^4.17.15",
"qs": "^6.9.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}