This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"version": "0.1.0",
"name": "mst-validatejs",
"description": "Brings validation support to mobx-state-tree powered by validate.js.",
"license": "MIT",
"author": {
"name": "Steve Kellock",
"email": "steve@kellock.ca",
"url": "https://github.com/skellock"
},
"repository": "https://github.com/skellock/mst-validatejs",
"homepage": "https://github.com/skellock/mst-validatejs",
"main": "dist/mst-validatejs.umd.js",
"module": "dist/mst-validatejs.es5.js",
"typings": "dist/mst-validatejs.d.ts",
"files": [
"dist",
"LICENSE",
"readme.md"
],
"scripts": {
"compile": "tsc",
"prebuild": "tsc",
"build": "rollup -c rollup.config.ts",
"clean": "npm-run-all clean:*",
"clean:build": "rimraf build",
"clean:dist": "rimraf dist",
"format": "prettier --write {**,.}/*.ts && tslint -p . --fix",
"lint": "tslint -p .",
"prepare": "yarn build",
"test:ci": "npm-run-all clean:* test:compile test",
"test:compile": "tsc -p tsconfig-test.json --pretty",
"test:compile:watch": "tsc -p tsconfig-test.json --pretty --watch",
"test": "ava",
"e2e": "npm-run-all clean:* compile test:compile test clean:* compile build"
},
"peerDependencies": {
"mobx-state-tree": "2.x | 3.x"
},
"devDependencies": {
"@types/lodash.camelcase": "^4.3.4",
"ava": "^0.25.0",
"lodash.camelcase": "^4.3.0",
"mobx": "^5.0.4",
"mobx-state-tree": "^3",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1"
},
"dependencies": {
"validate.js": "^0.12.0"
},
"ava": {
"files": [
"build/**/*.test.js"
]
}
}