-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "coq-to-ocaml-to-js",
"version": "0.1.0",
"repository": "https://github.com/smorimoto/coq-to-ocaml-to-js",
"author": "Sora Morimoto <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"size": "bundlesize",
"rescript:clean": "rescript clean",
"rescript:build": "rescript build",
"rollup:clean": "rimraf --glob dist/*.js",
"rollup:build": "rollup --config rollup.config.ts",
"clean": "npm-run-all -p *:clean",
"build": "npm-run-all -s *:build"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.27.0",
"bundlesize": "0.18.1",
"esy": "0.6.12",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rescript": "9.1.4",
"rimraf": "3.0.2",
"rollup": "2.77.2",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.7.4"
},
"bundlesize": [
{
"path": "dist/*.js",
"compression": "none"
}
]
}