-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.56 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
{
"name": "dipole",
"version": "2.6.1",
"description": "dipole - tiny reactive state management that just works",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.js",
"umd": "./dist/index.umd.js",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/zheksoon/dipole.git"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^28.1.2",
"microbundle": "^0.14.1",
"prettier": "^2.4.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "npx microbundle build src/index.ts",
"build-docs": "mkdocs gh-deploy"
},
"keywords": [
"observable",
"observables",
"computed",
"reactive",
"state management",
"functional reactive programming",
"frp",
"tfrp",
"mobx",
"typescript"
],
"minify": {
"mangle": {
"reserved": [
"Observable",
"Computed",
"Reaction"
],
"properties": {
"regex": "^(gSubscriberContext|gTransactionDepth)"
}
}
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false
},
"author": "Eugene Daragan",
"license": "MIT"
}