-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "@codeconsultants-public/mst",
"version": "1.0.2",
"description": "This package providers helpers for use with mobx-state-tree, such as ISODate type for easy integration of ISO 8601 date strings with MST",
"main": "index.js",
"scripts": {
"test": "jest",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesburton/-codeconsultants-mst.git"
},
"keywords": [
"mobx-state-tree",
"ISODate",
"ISO8601",
"mst"
],
"author": "James Burton (Code-Consultants)",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamesburton/-codeconsultants-mst/issues"
},
"homepage": "https://github.com/jamesburton/-codeconsultants-mst#readme",
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"babel-jest": "^26.1.0",
"cz-conventional-changelog": "3.2.0",
"jest": "^26.1.0",
"mobx": "^5.15.4"
},
"dependencies": {
"mobx-state-tree": "^3.16.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}