-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "@generative.fm/user",
"version": "1.1.2",
"description": "User-related utilities for Generative.fm",
"main": "dist/user.cjs.js",
"module": "dist/user.esm.js",
"scripts": {
"test": "karma start --single-run",
"test:watch": "karma start",
"lint": "eslint src",
"build": "rollup -c",
"preversion": "npm run lint && npm test && npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/generative-fm/user.git"
},
"author": "Alex Bainter <[email protected]> (https://alexbainter.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/generative-fm/user/issues"
},
"homepage": "https://github.com/generative-fm/user#readme",
"devDependencies": {
"@alexbainter/eslint-config": "^0.1.2",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"chai": "^4.3.0",
"eslint": "^7.16.0",
"esm": "^3.2.25",
"karma": "^6.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"redux": "^4.0.5",
"rollup": "^2.35.1"
},
"dependencies": {
"@alexbainter/indexed-db": "^0.1.1"
},
"peerDependencies": {
"redux": "^4.0.5"
},
"publishConfig": {
"access": "public"
}
}