-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
72
73
74
75
76
77
{
"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:ex0": "node ./scripts/releaseExample.js",
"release:next": "npm run build && lerna publish --force-publish --dist-tag next",
"release": "npm run build && npm run release:only",
"release:only": "lerna publish --force-publish",
"rm:dist": "rimraf packages/*/dist",
"rm:nm": "rimraf packages/**/node_modules && rimraf ./node_modules",
"build": "npm-run-all rm:dist 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-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",
"commit": "git-cz",
"version": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/any86/any-scroll.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/any86/any-scroll/issues"
},
"homepage": "https://github.com/any86/any-scroll#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.2.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/insert-css": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/raf": "^3.4.0",
"brotli": "^1.3.2",
"chalk": "^2.4.2",
"gh-pages": "^3.2.3",
"jest": "^27.4.5",
"minimist": "^1.2.0",
"npm-run-all": "^4.1.5",
"release-it": "^14.11.8",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.3",
"standard-version": "^4.4.0",
"terser": "^4.6.3",
"ts-jest": "^27.1.2",
"tslib": "^2.3.0",
"typescript": "^4.5.4",
"zlib": "^1.0.5"
},
"sideEffects": false,
"version": "0.3.10",
"dependencies": {
"lerna": "^4.0.0"
}
}