This repository has been archived by the owner on Nov 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.01 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
{
"name": "reffect",
"description": "The state manager",
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap && lerna run rebuild && lerna link --force-local",
"build": "lerna run build",
"size": "lerna run size",
"test": "lerna run test",
"prepublish": "npm run build",
"publish": "lerna publish from-package --yes",
"publish:i": "lerna publish from-package",
"publish:ci": "lerna publish from-package --yes --legacy-auth ${NPM_TOKEN}",
"deps:check": "find . -type f -name 'package.json' -not -path './.git/*' -not -path '*/node_modules/*' -execdir ncu ;",
"deps:upgrade": "find . -type f -name 'package.json' -not -path './.git/*' -not -path '*/node_modules/*' -execdir ncu --upgrade ;",
"deps:clear": "rimraf ./node_modules ./packages/**/node_modules"
},
"author": "acacode",
"license": "MIT",
"readme": "README.md",
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-typescript": "^4.1.1",
"@types/chai": "^4.2.11",
"@types/chai-spies": "^1.0.1",
"@types/mocha": "^7.0.2",
"@types/rollup": "^0.54.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"husky": "^4.2.3",
"json-beautify": "^1.1.1",
"lerna": "^3.20.2",
"lodash.camelcase": "^4.3.0",
"mocha": "^7.1.1",
"npm-check-updates": "^4.0.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.8.0",
"rollup-plugin-dts": "^1.4.0",
"rollup-plugin-terser": "^5.3.0",
"ts-mocha": "^7.0.0",
"ts-node": "^8.8.2",
"tslib": "^1.11.1",
"typescript": "^3.9.1-rc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
}
},
"homepage": "https://github.com/acacode/reffect",
"files": []
}