-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
{
"name": "@fluentkit/observable",
"version": "1.0.4",
"description": "A lightweight object proxy for reactivity with dependency tracking, watchers, effects and cached object getters.",
"author": "FluentKit",
"homepage": "https://github.com/fluentkit/observable/tree/master/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fluentkit/observable.git"
},
"bugs": {
"url": "https://github.com/fluentkit/observable/issues"
},
"license": "MIT",
"keywords": [
"fluentkit",
"reactive",
"observable"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"dependencies": {},
"scripts": {
"lint:eslint": "eslint --ext .ts . --ignore-path .gitignore",
"format:eslint": "eslint --ext .ts . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" \"**/*.ts\" --write --ignore-path .gitignore",
"lint": "yarn lint:eslint && yarn lint:prettier",
"format": "yarn format:eslint && yarn format:prettier",
"test": "jest",
"build": "rimraf dist && rollup -c rollup.config.js && tsc --declaration --outDir dist --emitDeclarationOnly && yarn size",
"size": "yarn csc dist --include js",
"prepublish": "yarn build"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"compression-stats-cli": "^1.2.2",
"concurrently": "^5.1.0",
"deepmerge": "^3.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^1.0.0",
"jest": "^26.4.2",
"lint-staged": "^10.0.0",
"prettier": "^2.0.4",
"rimraf": "^2.6.3",
"rollup": "^2.26.8",
"rollup-plugin-terser": "^7.0.1",
"ts-jest": "^26.3.0",
"tslib": "^1.11.0",
"typescript": "~3.8.2"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}