-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
{
"name": "what-code-is-faster",
"version": "1.0.0",
"description": "Speedy and correct JS perf comparisons",
"main": "dist/npm/package.js",
"module": "dist/npm-esm/package.mjs",
"types": "dist/npm/package.d.ts",
"exports": {
".": {
"types": "./dist/npm/package.d.ts",
"import": "./dist/npm-esm/package.mjs",
"require": "./dist/npm/package.js",
"default": "./dist/npm-esm/package.mjs"
},
"./common": {
"types": "./dist/npm/benchmark/index.d.ts",
"import": "./dist/npm-esm/benchmark/index.mjs",
"require": "./dist/npm/benchmark/index.js",
"default": "./dist/npm-esm/benchmark/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/npm",
"dist/npm-esm"
],
"targets": {
"app": {
"source": "src/index.html",
"distDir": "dist",
"publicUrl": "./"
}
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"since 2017-06"
],
"scripts": {
"start": "rm -rf .parcel-cache .cache dist && parcel src/index.html",
"build": "npm run build:app",
"build:app": "rm -rf .parcel-cache .cache dist && parcel build --target app",
"build:all": "npm run build:app && npm run build:package",
"build:package": "npm run build:package:cjs && npm run build:package:esm",
"build:package:cjs": "tsc -p tsconfig.package.json",
"build:package:esm": "tsc -p tsconfig.package.esm.json && node scripts/prepare-esm-package.js",
"prepack": "npm run build:package"
},
"author": "Vitaly Gordon",
"license": "MIT",
"devDependencies": {
"@monaco-editor/react": "3.7.2",
"@parcel/transformer-sass": "2.11.0",
"@types/deep-equal": "1.0.1",
"@types/pako": "1.0.1",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-github-button": "0.1.0",
"buffer": "6.0.3",
"monaco-editor": "0.21.2",
"pako": "2.0.2",
"panic-overlay": "1.0.42",
"path-browserify": "1.0.1",
"parcel": "^2.11.0",
"prettier": "^2.1.2",
"prop-types": "15.7.2",
"process": "0.11.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-github-button": "0.1.11",
"sass": "1.29.0",
"typescript": "^4.0.5",
"util": "0.12.5"
},
"dependencies": {
"deep-equal": "2.0.5"
}
}