forked from thomashoneyman/purescript-halogen-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.15 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
{
"name": "halogen-hooks",
"private": true,
"version": "0.0.1",
"description": "Hooks for Halogen",
"repository": "https://github.com/thomashoneyman/purescript-halogen-hooks",
"author": "Thomas Honeyman <hello@thomashoneyman.com>",
"license": "MIT",
"scripts": {
"postinstall": "node node_modules/puppeteer/install.js",
"clean": "rm -rf output output-es",
"test-normal": "npm run clean && npm run build:test-normal && npm run run:test-normal",
"build:test-normal": "spago -x test/test.dhall build && spago -x test/test.dhall bundle-app --no-build --main Performance.Test.App --to test/test.js",
"run:test-normal": "node test-normal.mjs",
"test-optimized": "npm run clean && npm run build:test-optimized && npm run run:test-optimized",
"build:test-optimized": "spago -x test/test.optimized.dhall build && ../purescript-backend-optimizer/backend-es/index.js bundle-app --no-build --main Performance.Test.App --to test/test.js",
"run:test-optimized": "node test-optimized.mjs"
},
"devDependencies": {
"filter-console": "^0.1.1",
"headless-devtools": "^2.0.1",
"puppeteer": "^13.7.0",
"tracealyzer": "^0.10.3"
}
}