-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.52 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": "rxstore-observer",
"version": "1.2.10",
"description": "React state management tool using RxJS",
"repository": "blankart/rxstore-observer",
"main": "lib/rxstore-observer.js",
"unpkg": "dist/rxstore-observer.js",
"module": "es/rxstore-observer.js",
"browser": "dist/rxstore-observer.js",
"types": "types/index.d.ts",
"files": [
"dist",
"es",
"lib",
"types"
],
"env": {
"browser": true,
"es2021": true,
"node": true
},
"scripts": {
"clean": "npm run clean:build && npm run clean:types",
"clean:build": "rimraf dist es lib",
"clean:types": "rimraf types",
"dev": "nodemon",
"dev:ts": "tsc -w",
"test": "NODE_OPTIONS=\"--unhandled-rejections=warn\" jest --no-cache",
"test:prepublish": "jest --no-cache",
"test:watch": "jest --no-cache --watchAll",
"lint": "eslint src/**/*.ts",
"build": "rollup -c",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types --target esnext --project tsconfig.json",
"prepublishOnly": "npm run lint && npm run test:prepublish && npm run clean && npm run build && npm run build:types"
},
"author": "Nico Mendoza",
"license": "MIT",
"dependencies": {
"@abraham/reflection": "^0.8.0",
"@babel/runtime": "^7.13.10",
"rxjs": "^6.6.6",
"typescript": "^4.2.3"
},
"devDependencies": {
"@babel/core": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.22",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.2",
"rollup": "^2.43.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^2.1.0"
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "node -r ts-node/register src/index.ts",
"ext": "ts, js"
},
"test": "jest"
}