-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.3 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
{
"name": "@easyops-cn/brick-next-pipes",
"version": "0.7.1",
"description": "Pipes for Brick Next",
"repository": "easyops-cn/brick-next-pipes",
"license": "MIT",
"scripts": {
"test": "jest",
"clean": "rimraf dist && rimraf api && rimraf docs && rimraf scripts-dist",
"prestart": "npm run clean",
"start": "concurrently -k -n esm,cjs,scripts \"npm run start:esm\" \"npm run start:cjs\" \"npm run start:scripts\"",
"start:esm": "tsc --watch",
"start:cjs": "tsc --watch --project tsconfig.cjs.json",
"start:scripts": "tsc --watch --project tsconfig.scripts.json",
"prebuild": "npm run clean",
"build": "concurrently -n esm,cjs,scripts \"npm run build:esm\" \"npm run build:cjs\" \"npm run build:scripts\"",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:scripts": "tsc --project tsconfig.scripts.json",
"build:docs": "api-extractor run && npm run docs:gen",
"build:docs:dev": "api-extractor run --local --verbose && npm run docs:gen",
"postbuild": "npm run build:docs && node scripts-dist/index.js",
"docs:gen": "api-documenter markdown --input-folder api --output-folder docs",
"release": "standard-version"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"files": [
"api",
"dist",
"docs"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@easyops-cn/api-documenter": "^7.9.3",
"@microsoft/api-extractor": "^7.11.2",
"@types/jest": "^26.0.9",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.159",
"@types/lolex": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-jest": "^26.3.0",
"chalk": "^4.1.0",
"concurrently": "^6.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"js-yaml": "^3.14.0",
"lint-staged": "^10.2.11",
"lodash": "^4.17.19",
"lolex": "^6.0.0",
"moment": "^2.27.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"typescript": "^4.0.0"
},
"peerDependencies": {
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"moment": "^2.27.0"
}
}