forked from any86/any-touch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.69 KB
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
72
73
74
75
76
{
"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:last": "npm run build && lerna publish --force-publish",
"rm": "rimraf packages/**/dist",
"clean": "rimraf node_modules",
"build": "npm-run-all rm build:umd build:cjs build:es 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",
"release": "npm run test && standard-version && npm run build && npm pub && git push",
"release-no-test": "standard-version && npm run build && npm pub && git push",
"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",
"release:demo": "node ./scripts/demo.js",
"removeAll": "rimraf ./node_modules",
"commit": "git-cz",
"version": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/any86/any-touch.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/any86/any-touch/issues"
},
"homepage": "https://github.com/any86/any-touch#readme",
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-replace": "^2.2.1",
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.149",
"brotli": "^1.3.2",
"chalk": "^2.4.2",
"gh-pages": "^2.0.1",
"jest": "^24.7.1",
"lerna": "^3.19.0",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"rollup": "^1.27.13",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.25.3",
"shelljs": "^0.8.3",
"standard-version": "^4.4.0",
"terser": "^4.6.3",
"ts-jest": "^24.0.2",
"typescript": "^3.8.3",
"zlib": "^1.0.5"
},
"sideEffects": false
}