-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.45 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
{
"name": "@manifoldco/manifold-init",
"author": "manifoldco",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldco/manifold-init.git"
},
"homepage": "https://github.com/manifoldco/manifold-init",
"bugs": {
"url": "https://github.com/manifoldco/manifold-init/issues"
},
"files": [
"dist/",
"loader/",
"src/",
"react/"
],
"version": "0.7.4",
"description": "Manifold UI Initialization",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/manifold-init/manifold-init.js",
"scripts": {
"build": "stencil build",
"bundlesize": "npm run build && npx bundlesize",
"start": "stencil build --dev --watch --serve",
"generate": "stencil generate",
"lint": "eslint --ext .js,.ts,.tsx src",
"prepare": "node scripts/version-from-git",
"prepublishOnly": "npm run build",
"test": "stencil test --spec --e2e",
"test:e2e": "stencil test --e2e",
"test:spec": "stencil test --spec",
"test:coverage": "stencil test --spec --e2e --coverage --maxWorkers=2",
"test:debug": "node --inspect-brk node_modules/.bin/stencil test --spec --e2e --runInBand",
"test:watch": "stencil test --spec --e2e --watchAll",
"typecheck": "tsc --noEmit",
"update-version": "node scripts/version-from-git"
},
"bundlesize": [
{
"path": "./dist/manifold-init/index.esm.js",
"maxSize": "5 kB",
"compression": "none"
}
],
"devDependencies": {
"@manifoldco/eslint-plugin-stencil": "^0.4.1",
"@stencil/core": "^1.13.0",
"@stencil/react-output-target": "0.0.9",
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@types/puppeteer": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"fetch-mock": "^9.9.0",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"puppeteer": "^3.0.4",
"rollup-plugin-replace": "^2.2.0"
},
"license": "BSD-3-Clause"
}