-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
88 lines (88 loc) · 4.28 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
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"scripts": {
"lerna": "lerna",
"typecheck": "tsc --noEmit",
"test": "jest",
"format": "prettier --write --list-different 'packages/*/src/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint 'packages/*/src/**/*.{js.jsx,ts,tsx}'",
"bundle:web-script": "rollup --config --configBundleType web-script",
"bundle:web-cjs": "rollup --config --configBundleType web-cjs",
"bundle:web-module": "rollup --config --configBundleType web-module",
"bundle:node-client": "rollup --config --configBundleType node-client",
"bundle:react-native": "rollup --config --configBundleType react-native",
"bundle": "npm run bundle:web-script && npm run bundle:web-cjs && npm run bundle:web-module && npm run bundle:node-client && npm run bundle:react-native",
"dts": "tsc --emitDeclarationOnly && node scripts/dts.js && npm run clean-decl",
"docs": "npm run dts && node scripts/docs.js",
"clean-decl": "rimraf 'packages/*/src/*.d.ts' 'packages/*/src/!(@types)/**/*.d.ts' 'packages/*/src/*.d.ts.map' 'packages/*/src/!(@types)/**/*.d.ts.map'",
"clean": "npm run clean-decl && rimraf temp 'packages/*/dist' 'packages/*/index.d.ts'",
"build": "npm run clean && npm run bundle && npm run docs",
"example": "cd packages/example && npm start",
"set-version": "npm run lerna -- version --no-changelog --no-commit-hooks --no-git-tag-version --no-push --exact --yes",
"prepare-new-release": "git log --first-parent `git describe --abbrev=0`.. > new-release"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.0",
"@babel/plugin-proposal-async-generator-functions": "7.7.0",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-proposal-optional-catch-binding": "7.2.0",
"@babel/plugin-proposal-unicode-property-regex": "7.7.0",
"@babel/plugin-transform-arrow-functions": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.7.0",
"@babel/plugin-transform-block-scoped-functions": "7.2.0",
"@babel/plugin-transform-block-scoping": "7.6.3",
"@babel/plugin-transform-classes": "7.7.0",
"@babel/plugin-transform-computed-properties": "7.2.0",
"@babel/plugin-transform-destructuring": "7.6.0",
"@babel/plugin-transform-dotall-regex": "7.7.0",
"@babel/plugin-transform-duplicate-keys": "7.5.0",
"@babel/plugin-transform-exponentiation-operator": "7.2.0",
"@babel/plugin-transform-for-of": "7.4.4",
"@babel/plugin-transform-function-name": "7.7.0",
"@babel/plugin-transform-literals": "7.2.0",
"@babel/plugin-transform-member-expression-literals": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.7.0",
"@babel/plugin-transform-named-capturing-groups-regex": "7.7.0",
"@babel/plugin-transform-new-target": "7.4.4",
"@babel/plugin-transform-object-super": "7.5.5",
"@babel/plugin-transform-parameters": "7.4.4",
"@babel/plugin-transform-property-literals": "7.2.0",
"@babel/plugin-transform-regenerator": "7.7.0",
"@babel/plugin-transform-reserved-words": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/plugin-transform-shorthand-properties": "7.2.0",
"@babel/plugin-transform-spread": "7.6.2",
"@babel/plugin-transform-sticky-regex": "7.2.0",
"@babel/plugin-transform-template-literals": "7.4.4",
"@babel/plugin-transform-typeof-symbol": "7.2.0",
"@babel/plugin-transform-typescript": "7.7.0",
"@babel/plugin-transform-unicode-regex": "7.7.0",
"@babel/runtime": "7.7.1",
"@microsoft/api-documenter": "7.5.6",
"@microsoft/api-extractor": "7.5.4",
"@types/jest": "24.0.22",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"builtins": "3.0.1",
"core-js": "3.3.6",
"eslint": "6.6.0",
"eslint-plugin-tsdoc": "0.2.0",
"google-closure-compiler": "20191027.0.0",
"jest": "24.9.0",
"lerna": "3.18.3",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"rollup": "1.26.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"tmp": "0.1.0",
"typescript": "3.7.2",
"whatwg-fetch": "3.0.0"
}
}