-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
27 lines (27 loc) · 1.14 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
{
"name": "halogen-hooks",
"private": true,
"version": "0.0.1",
"description": "Hooks for Halogen",
"repository": "https://github.com/thomashoneyman/purescript-halogen-hooks",
"author": "Thomas Honeyman <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "node node_modules/puppeteer/install.js",
"build": "spago build",
"build:examples": "spago -x examples/examples.dhall build",
"build:test": "spago -x test/test.dhall build",
"snapshot": "npm run bundle:performance && node test/run-snapshot.mjs",
"test": "spago -x test/test.dhall test",
"test:performance": "npm run bundle:performance && node test/run-test.mjs",
"bundle:examples": "spago -x examples/examples.dhall bundle-app --minify --main Example.Main --to examples/app.js",
"bundle:performance": "spago -x test/test.performance.dhall build && purs-backend-es bundle-app --no-build --minify --main Performance.Test.App --to test/test.js"
},
"devDependencies": {
"filter-console": "^0.1.1",
"headless-devtools": "^2.0.1",
"puppeteer": "^13.7.0",
"purs-backend-es": "^1.1.0",
"tracealyzer": "^0.10.3"
}
}