-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "xylitol",
"version": "0.0.2",
"description": "",
"main": "dist/xylitol.js",
"module": "dist/xylitol.esm.js",
"unpkg": "dist/xylitol.prod",
"jsdelivr": "dist/xylitol.prod",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsc --emitDeclarationOnly && rollup -w -c",
"test": "jest",
"lint": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuZHui/xylitol.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuZHui/xylitol/issues"
},
"homepage": "https://github.com/SuZHui/xylitol#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"rollup": "^2.28.1",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"dependencies": {
"tslib": "^2.0.1"
},
"peerDependencies": {
"rxjs": "^6.6.3"
},
"sideEffects": false
}