-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 886 Bytes
/
package.json
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
32
33
34
35
36
37
38
39
{
"name": "adt-remote-data",
"version": "2.0.1",
"description": "ADT Remote Data for Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --watchAll",
"test:ci": "jest",
"prepare": "npm run build && npm run test:ci",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ronnelreposo/adt-remote-data.git"
},
"keywords": [
"Remote Data",
"ADT",
"Typescript"
],
"author": "ronnelreposo",
"license": "ISC",
"devDependencies": {
"@types/jest": "29.5.12",
"@types/lodash": "4.17.0",
"@types/node": "20.11.30",
"jest": "29.7.0",
"lodash": "4.17.21",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.3"
}
}