-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "antd-observable",
"version": "0.0.10",
"description": "antd的observable实现",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"typings": "dist/antd-observable.d.ts",
"scripts": {
"api": "npm run clean && npm run package && api-extractor run --local",
"package": "rollup -c rollup.config.ts --configPlugin typescript",
"build": "npm run clean && npm run test && npm run package && npm run api && npm run clean:type",
"clean": "rimraf dist coverage temp -rf",
"clean:type": "rimraf dist/operator dist/types dist/cjs dist/index.d.ts",
"doc": "api-documenter markdown -i ./temp",
"release": "npm run build && standard-version",
"test": "jest"
},
"files": [
"dist/index.js",
"dist/index.esm.js",
"dist/index.aio.js",
"dist/antd-observable.d.ts"
],
"keywords": [
"rxjs",
"observable",
"antd",
"procomponent"
],
"author": {
"name": "silence_zhpf",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/hackers267/antd-observable.git"
},
"license": "MIT",
"devDependencies": {
"@microsoft/api-documenter": "^7.21.5",
"@microsoft/api-extractor": "^7.34.4",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"rxjs": "^7.5.6"
}
}