-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "jinaga",
"version": "6.5.7",
"description": "Data management for web and mobile applications.",
"keywords": [
"state",
"immutable",
"middleware",
"api",
"offline",
"pwa"
],
"homepage": "http://jinaga.com",
"bugs": {
"url": "https://github.com/jinaga/jinaga.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jinaga/jinaga.js.git"
},
"license": "MIT",
"author": "Michael L Perry",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist/ && rimraf integration-test/jinaga-test/jinaga/ && rimraf integration-test/jinaga-test/node_modules/",
"prepack": "npm run clean && npm run build && npm run test",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"test": "npx tsc --noEmit --project tsconfig.test.json && jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@stablelib/base64": "^1.0.1",
"@stablelib/sha512": "^1.0.1",
"@stablelib/utf8": "^1.0.2",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node-forge": "^1.3.11",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jest": "^28.1.0",
"jest-progress-bar-reporter": "^1.0.25",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2",
"typescript-eslint": "^8.3.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
}