-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "@fmtk/util",
"author": "Gordon Leigh <[email protected]>",
"repository": "https://github.com/futurematik/util",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn clean && yarn compile && yarn lint",
"clean-npm": "find . -name node_modules -type d -prune -exec rm -rf {} \\;",
"clean": "lerna run clean",
"compile": "FORCE_COLOR=1 lerna run compile --stream",
"lint": "lerna run lint",
"postversion": "git push --follow-tags",
"prepublish": "yarn build",
"preversion": "yarn build",
"test": "FORCE_COLOR=1 lerna run --stream test",
"watch:compile": "FORCE_COLOR=1 lerna run --parallel watch"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"chokidar": "^3.2.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}