-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "@ifake/easy-polling",
"version": "1.1.0",
"description": "",
"main": "dist/index.umd.js",
"module": "lib/index.esm.js",
"scripts": {
"start": "cross-env NODE_ENV=development rollup -c rollup.config.ts -w",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.ts",
"build:types": "tsc -p tsconfig.type.json && api-extractor run && rimraf ./temp",
"test": "jest",
"start:demo": "serve -l 8986",
"release": "ts-node --project tsconfig.build.json scripts/release.ts"
},
"files": [
"lib",
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"LICENSE": "MIT",
"author": "",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@microsoft/api-extractor": "~7.13.2",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^26.0.22",
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.37",
"@types/semver": "^7.3.4",
"cross-env": "^7.0.2",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"jest": "^26.6.3",
"minimist": "^1.2.5",
"rimraf": "^3.0.2",
"rollup": "^2.34.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.5",
"serve": "^11.3.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "~4.1.5"
},
"dependencies": {
"@babel/runtime": "^7.12.5"
}
}