mirror of
https://github.com/dnote/dnote
synced 2026-03-14 14:35:50 +01:00
33 lines
875 B
JSON
33 lines
875 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": "karma start ./karma.conf.js --single-run",
|
|
"test:watch": "karma start ./karma.conf.js --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.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.7",
|
|
"chai": "^4.2.0",
|
|
"karma": "^4.4.1",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-typescript": "^4.1.1",
|
|
"mocha": "^6.2.2",
|
|
"prettier": "^1.18.2",
|
|
"typescript": "^3.6.4"
|
|
}
|
|
}
|