-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "modeled-mobx",
"version": "0.6.4",
"description": "MobX powered classes with type-coercion and serialization/hydration",
"author": "nathanstitt",
"license": "MIT",
"repository": "nathanstitt/modeled-mobx",
"exports": {
"import": "./dist/modeled-mobx.modern.js",
"require": "./dist/modeled-mobx.js"
},
"typings": "dist/index.d.ts",
"main": "dist/modeled-mobx.js",
"module": "dist/modeled-mobx.module.js",
"unpkg": "dist/modeled-mobx.umd.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle --no-compress",
"build:tsc": "tsc",
"build:tsc:watch": "tsc --watch",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"test:unit": "jest",
"test": "run-s test:unit lint test:build",
"test:build": "run-s build",
"lint": "eslint src/*ts"
},
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.11.9",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"eslint": "7.21.0",
"eslint-config-argosity": "3.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"files": [
"dist"
],
"dependencies": {
"mobx": "^6.1"
}
}