-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
71 lines (71 loc) · 2.23 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
67
68
69
70
71
{
"private": true,
"workspaces": [
"packages/*"
],
"description": "一个小巧的手势库",
"files": [
"dist/**/*",
"types/**/*"
],
"scripts": {
"dev:ex": "cd example && npm run serve",
"build:ex": "cd example && npm run build",
"release:ex": "npm run build:ex && node ./scripts/releaseExample.js",
"release:next": "npm run build && lerna publish --force-publish --dist-tag next",
"release": "npm run build && lerna publish --force-publish",
"rm:dist": "rimraf packages/*/dist",
"rm:nm": "rimraf packages/**/node_modules && rimraf ./node_modules",
"clean": "rimraf node_modules",
"build": "npm-run-all rm:dist build:umd build:cjs build:es build:dts build:dts",
"build:cjs": "node ./scripts/build.cjs",
"build:es": "node ./scripts/build.es",
"build:umd": "node ./scripts/build.umd && node ./scripts/build.umd --compress",
"build:dts": "rimraf packages/*/types && node ./scripts/build.dts",
"dev": "rollup -c --watch --environment NODE_ENV:development",
"test": "jest",
"test:q": "jest --collectCoverage false",
"size": "node ./scripts/calcSize",
"test-no-cache": "jest --no-cache",
"commit": "git-cz",
"version": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/any86/any-touch.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/any86/any-touch/issues"
},
"homepage": "https://github.com/any86/any-touch#readme",
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.149",
"brotli": "^1.3.2",
"chalk": "^2.4.2",
"gh-pages": "^2.0.1",
"jest": "^26.0.0",
"lerna": "^4.0.0",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"rollup": "^2.60.2",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.3",
"standard-version": "^4.4.0",
"terser": "^5.0.0",
"ts-jest": "^26.0.0",
"tslib": "^2.3.1",
"typescript": "^4.6.0",
"zlib": "^1.0.5"
},
"sideEffects": false,
"version": "2.0.2-alpha.1"
}