forked from BuilderIO/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 5.17 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "@builder.io/webcomponents",
"version": "1.3.36-alpha.0",
"description": "",
"keywords": [],
"main": "dist/system/builder-webcomponents-async.js",
"browser": "dist/system/builder-webcomponents-async.js",
"unpkg": "dist/system/builder-webcomponents-async.js",
"module": "dist/builder-webcomponents.es5.js",
"typings": "dist/types/builder-webcomponents.d.ts",
"author": "Steve Sewell <[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/builder"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"_unlink": "npm unlink *",
"_install": "npm install",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src && npm run build:unpkg:dist",
"build:unpkg:dist": "ts-node -O '{\"module\": \"commonjs\"}' tools/make-unpkg-dist.ts",
"start": "SERVE=true rollup -c rollup.config.ts -w",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged",
"serve": "http-server -p 8989",
"develop": "concurrently \"npm run start\" \"npm run serve\"",
"release:patch": "npm run build && npm version patch && npm run build:unpkg:dist && ALLOW_PUBLISH=true npm publish",
"release:nightly": "npm run build && npm version prerelease && npm run build:unpkg:dist && ALLOW_PUBLISH=true npm publish --tag nightly",
"release:dev": "npm run build && npm version prerelease && npm run build:unpkg:dist && ALLOW_PUBLISH=true npm publish --tag dev",
"release:beta": "npm run build && npm version prerelease && npm run build:unpkg:dist && ALLOW_PUBLISH=true npm publish --tag beta",
"prepublishOnly": "block-publish"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@builder.io/block-publish": "^1.1.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@rollup/plugin-alias": "^2.2.0",
"@types/fs-extra-promise": "^1.0.7",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.24",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.8.3",
"colors": "^1.3.3",
"commitizen": "^4.0.3",
"concurrently": "^5.0.1",
"coveralls": "^3.0.2",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"fs-extra-promise": "^1.0.1",
"http-server": "^0.12.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"lint-staged": "^9.5.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.16.1",
"prompt": "^1.0.0",
"replace-in-file": "^4.2.0",
"rimraf": "^3.0.0",
"rollup": "^1.32.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.1",
"rollup-plugin-visualizer": "^3.3.0",
"semantic-release": "^15.13.3",
"systemjs": "^6.3.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.0.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.15.4",
"typescript": "^3.7.3"
},
"optionalDependencies": {
"@builder.io/email": "^1.2.27-alpha.0",
"@webcomponents/custom-elements": "^1.2.1",
"es6-promise": "^4.2.5"
},
"//": "TODO: make all of these optional dependencies, simple mode doesn't require",
"dependencies": {
"@builder.io/react": "^1.1.32-alpha.0",
"@builder.io/sdk": "^1.1.21-alpha.0",
"@builder.io/shopify": "^1.3.39-alpha.0",
"@builder.io/widgets": "^1.2.19-alpha.0",
"@emotion/core": "^10.0.22",
"@types/css-font-loading-module": "0.0.4",
"preact": "^10.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tslib": "^1.10.0"
},
"gitHead": "4d96fbc32864698afbb355ab991c6d90be991951"
}