mirror of
https://github.com/dnote/dnote
synced 2026-03-14 14:35:50 +01:00
29 lines
699 B
JSON
29 lines
699 B
JSON
{
|
|
"name": "jslib",
|
|
"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"
|
|
},
|
|
"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",
|
|
"@types/mocha": "^5.2.7",
|
|
"jest": "^24.9.0",
|
|
"prettier": "^1.19.1",
|
|
"ts-jest": "^24.1.0",
|
|
"typescript": "^3.7.2"
|
|
}
|
|
}
|