-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "factorial-form",
"version": "3.3.1",
"description": "Factorial form library",
"repository": {
"type": "git",
"url": "[email protected]:factorialco/factorial-form.git"
},
"license": "MIT",
"jest": {
"roots": [
"."
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.spec\\.ts$"
},
"dependencies": {
"flat": "^5.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mobx": "^6.3.2",
"rollup-plugin-dts": "^3.0.2"
},
"peerDependencies": {
"mobx": "^6.3.2"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/lodash": "4.14.170",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"eslint": "7.28.0",
"husky": "4.3.0",
"jest": "27.0.4",
"lint-staged": "11.0.0",
"rimraf": "3.0.2",
"rollup": "2.51.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "27.0.3",
"tslib": "2.3.1",
"typescript": "4.3.2"
},
"main": "lib",
"types": "./lib/index.d.ts",
"scripts": {
"build": "yarn build:clean && rollup --config",
"build:clean": "rimraf lib",
"prepublish": "yarn build",
"jest": "NODE_PATH=src jest --no-cache",
"lint": "eslint --ext .ts --cache src/ __tests__/",
"test": "yarn lint && yarn jest",
"prepush": "yarn test",
"watch": "rollup --config -w",
"lint-staged": {
"linters": {
"{src|__tests__}/**/*.ts": [
"git add"
]
}
}
}
}