-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
60 lines (60 loc) · 2.54 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "purescript-pux",
"description": "Build type-safe web applications with PureScript.",
"version": "13.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",
"build:examples": "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",
"test": "npm -s run test:react && npm -s run test:preact",
"test:react": "pulp test",
"test:preact": "pulp test --runtime babel-node"
},
"dependencies": {
"bower": "^1.8.2",
"create-react-class": "^15.6.2",
"pulp": "^12.3.0",
"purescript": "^0.12.0"
},
"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"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^2.7.1",
"react": "^16.0.0",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"react-dom": "^16.0.0"
}
}