-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.26 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.26 KB
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
{
"name": "@djforth/fido",
"version": "1.3.1",
"description": "A module to fetch and store data",
"main": "index.js",
"repository": "[email protected]:djforth/store_fetch.git",
"author": "Adrian Stainforth <[email protected]>",
"license": "MIT",
"browserslist": [
">0.25%",
"IE >= 11",
"not op_mini all"
],
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build:watch": "NODE_ENV=production rollup -c -w",
"lint": "eslint src/** --fix",
"lint:tests": "eslint spec/** --fix",
"sprites": "asset-pipeline-sprites --svginline",
"test": "jest --coverage --config jest.config.json",
"test:watch": "jest --watch --config jest.config.json"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.8",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@djforth/jest-matchers": "^2.2.1",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-inject": "^4.0.1",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@rollup/plugin-strip": "^1.3.2",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.6",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-es2015-rollup": "^3.0.0",
"browserslist": "^4.11.1",
"eslint-config-morsedigital-prettier": "^2.4.0",
"fake-indexeddb": "^3.0.0",
"jest": "^25.2.7",
"jest-fetch-mock": "^3.0.3",
"lodash": "^4.17.15",
"prettier": "^2.0.2",
"rollup": "^2.3.3",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"@djforth/utilities": "^1.1.0",
"babel-plugin-date-fns": "^2.0.0",
"core-js": "^3.6.4",
"date-fns": "^2.11.1",
"idb": "^5.0.2"
}
}