-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@ducharmemp/mobstr",
"version": "0.3.2",
"description": "Object relational mapper for MobX stores",
"main": "dist/index.js",
"source": "src/index.ts",
"bugs": {
"url": "https://github.com/ducharmemp/mobstr/issues"
},
"sideEffects": false,
"keywords": [
"orm",
"mobx",
"redux",
"state",
"store",
"database",
"reactive"
],
"repository": {
"type": "git",
"url": "https://github.com/ducharmemp/mobstr.git"
},
"files": [
"/dist"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**"
],
"reporter": [
"html",
"text"
],
"require": [
"ts-node/register",
"tsconfig-paths/register",
"source-map-support/register"
],
"sourcemap": true,
"instrument": true,
"all": true
},
"scripts": {
"test:setup": "mocha --timeout=10000 -r ts-node/register -r tsconfig-paths/register -r source-map-support/register",
"test": "nyc npm run test:setup -- test/index.test.ts",
"test:ci": "npm run test -- --reporter mocha-junit-reporter --reporter-options mochaFile=test-results/mocha/test-results.xml --exit --full-trace --bail",
"test:prof": "npm run clean && npm run build && NODE_ENV=production node --prof $(which npm) run test:setup -- test/perf.test.ts && node --prof-process isolate* > processed.txt && rm isolate*",
"format": "prettier src/** test/** --write",
"coverage": "nyc report --reporter=text-lcov > .coverage",
"test:watch": "npm run test -- --watch",
"start": "npm run build -- --watch",
"build": "NODE_ENV=production rollup --config rollup.config.js",
"build:docs": "typedoc --options ./typedocconfig.js",
"clean": "rm -rf dist && rm -rf .rts2*",
"preversion": "npm run clean && npm run build && npm run build:docs && npm test && git add .",
"postpublish": "git push --tags && git push origin master"
},
"author": "Matthew P DuCharme",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"lodash.flatmap": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.hasin": "^4.5.2",
"lodash.isarray": "^4.0.0",
"lodash.isequal": "^4.5.0",
"lodash.isobject": "^3.0.2",
"loglevel": "^1.6.3",
"object-hash": "^1.3.1"
},
"peerDependencies": {
"mobx": ">=5.13.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash.flatmap": "^4.5.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.hasin": "^4.5.6",
"@types/lodash.isarray": "^4.0.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.isobject": "^3.0.6",
"@types/lodash.range": "^3.2.6",
"@types/mocha": "^5.2.7",
"@types/object-hash": "^1.3.0",
"@types/sinon": "^7.0.13",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"lerna": "^3.16.4",
"lodash.range": "^3.2.0",
"mobx": "^5.10.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rollup": "^1.20.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.24.0",
"serializr": "^1.5.1",
"sinon": "^7.4.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"tslib": "^1.10.0",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.5.3",
"uuid": "^3.3.2"
},
"typings": "dist/index.d.ts"
}