-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"name": "examples",
"private": true,
"description": "Examples for tomato-js",
"main": "index.js",
"scripts": {
"start": "http-server -o",
"build:all-in-commonjs": "cd all-in-commonjs && rollup -c",
"build:all-in-esm": "cd all-in-esm && rollup -c",
"build:all-in-typescript": "cd all-in-typescript && rollup -c",
"build:split-in-commonjs": "cd split-in-commonjs && rollup -c",
"build:split-in-esm": "cd split-in-esm && rollup -c",
"build:split-in-typescript": "cd split-in-typescript && rollup -c",
"build:preload": "cd preload && rollup -c",
"new": "plop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomato-js/examples.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomato-js/examples/issues"
},
"homepage": "https://github.com/tomato-js/examples#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.8.3",
"babel-preset-stage-0": "^6.24.1",
"http-server": "^0.12.1",
"plop": "^2.6.0",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^3.8.2"
}
}