-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
56
57
58
59
60
61
62
{
"name": "jstorm",
"version": "0.17.0",
"description": "JavaScript Storage ORM (Object-Relational Mapper) for LocalStorage and Chrome Storage API",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --config=./jest.config.ts",
"test:all": "npm run test && npm run e2e",
"build": "npm run build:lib && npm run build:e2e && npm run build:doc",
"build:lib": "tsc -p ./tsconfig.json",
"build:e2e": "parcel build --no-cache --target e2e",
"build:doc": "parcel build --no-cache --target docs",
"e2e": "npm run build:lib && npm run build:e2e && ts-node ./e2e/run.ts",
"doc": "npm run build:lib && npm run build:doc && echo chrome.exe ./docs/index.html --user-data-dir=./docs/tmp --disable-web-security",
"clean": "rm -rf ./lib ./e2e/app/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otiai10/jstorm.git"
},
"keywords": [
"chrome",
"storage",
"object-relation-mapper",
"orm"
],
"author": "otiai10",
"license": "MIT",
"bugs": {
"url": "https://github.com/otiai10/jstorm/issues"
},
"homepage": "https://github.com/otiai10/jstorm#readme",
"devDependencies": {
"@types/chrome": "^0.0.273",
"@types/jest": "^29.2.4",
"@types/node": "^22.7.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"jest": "^29.3.1",
"parcel": "^2.8.2",
"puppeteer": "^23.4.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.4.3"
},
"targets": {
"main": false,
"e2e": {
"source": "./e2e/app/src/background.js",
"distDir": "./e2e/app/dist",
"optimize": false,
"sourceMap": false
},
"docs": {
"source": "./docs/main.tsx",
"distDir": "./docs",
"optimize": true,
"sourceMap": false
}
}
}