-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@forlagshuset/simple-fs",
"version": "0.5.2",
"description": "File system in indexeddb",
"main": "./dist/SimpleFS",
"module": "./dist/SimpleFS.mjs",
"scripts": {
"build:umd": "webpack --env=production",
"build:mjs": "rollup -c rollup.config.js",
"build": "npm run build:umd && npm run build:mjs",
"dev": "webpack --progress --colors --watch --mode=development",
"unit": "jest --config test/unit/jest.conf.js",
"test": "npm run unit",
"test:watch": "mocha --require @babel/register --require @babel/plugin-transform-runtime --colors -w ./test/*.spec.js",
"clean": "rimraf dist coverage",
"prepare": "npm run clean && npm run test && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-flow": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8",
"@babel/runtime": "^7.13.10",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype-errors": "^4.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"fake-indexeddb": "^3.1.2",
"flow-bin": "^0.146.0",
"jest": "^26.6.3",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.41.4",
"rollup-plugin-node-resolve": "^5.2.0",
"webpack": "^5.26.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"workbox-webpack-plugin": "^6.1.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"keywords": [
"offline",
"indexeddb",
"promise",
"filesystem"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"author": "Michal Ostrowski <michal.ostrowski@forlagshuset.no>",
"license": "MIT",
"dependencies": {
"dexie": "3.2.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fagbokforlaget/simple-fs.git"
},
"homepage": "https://github.com/fagbokforlaget/simple-fs#readme"
}