forked from alexmingoia/purescript-pux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "purescript-pux",
"description": "Build type-safe web applications with PureScript.",
"version": "10.0.0",
"scripts": {
"postinstall": "bower install",
"build:clean": "rm -rf dist output",
"docs": "rm -rf docs/API && pulp docs && mkdir -p docs/API && mv generated-docs/Pux docs/API/Pux && mv generated-docs/Pux.md docs/API/Pux.md && rm -r generated-docs",
"publish:website": "npm run docs && cd website && npm run build && cd dist/www && git init && git commit --allow-empty -m 'Update website.' && git checkout -b gh-pages && touch .nojekyll && echo purescript-pux.org > CNAME && git add . && git commit -am 'Update website.' && git push [email protected]:alexmingoia/purescript-pux gh-pages --force",
"publish:packages": "pulp publish && npm publish",
"build": "pulp build",
"build:example:counter": "pulp build --main BasicExample --to output/bundle.js -I examples/counter",
"build:example:nested-foldp": "pulp build --main CounterPairExample --to output/bundle.js -I examples/nested-foldp",
"build:example:form": "pulp build --main FormsExample --to output/bundle.js -I examples/form",
"build:example:ajax": "pulp build --main AjaxExample --to output/bundle.js -I examples/ajax",
"build:example:routing": "pulp build --main RoutingExample --to output/bundle.js -I examples/routing",
"build:example:react-interop": "pulp build --main ReactInteropExample --to output/bundle.js -I examples/react-interop",
"test": "npm run build:example:counter && npm run build:example:nested-foldp && npm run build:example:ajax && npm run build:example:routing && npm run build:example:form"
},
"dependencies": {
"bower": "^1.8.0",
"pulp": "^11.0.0",
"purescript": "^0.11.4"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/alexmingoia/purescript-pux.git"
},
"keywords": [
"purescript",
"pux",
"react",
"elm",
"flux",
"redux",
"frp",
"virtual-dom"
],
"author": "Alexander C. Mingoia",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alexmingoia/purescript-pux/issues"
}
}