-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "dnote-sdk",
"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",
"lint:fix": "../node_modules/.bin/eslint ./src --fix --ext .ts,.tsx,.js"
},
"author": "Monomax Software Pty Ltd",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@types/history": "^4.7.7",
"history": "^4.10.1",
"lodash": "^4.17.20",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.9.7"
}
}