-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.5 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
{
"name": "staterx-main",
"version": "0.0.2",
"description": "State management with RxJS",
"homepage": "https://jamesmfriedman.github.io/staterx/",
"scripts": {
"postinstall": "npm run lib:setup",
"dev:setup": "npm run lib:setup && cd ../ && npm run docs:setup && npm run hacker-news:setup && npm run pong:setup",
"build": "npm run lib:build && npm run docs:build && npm run pong:build && npm run hacker-news:build",
"test": "cd lib && npm run test",
"coverage": "cd lib && npm run coverage",
"lib:build": "cd lib && npm run build",
"lib:setup": "cd lib && npm i && npm run build",
"dev-tools": "cd dev-tools && npm run start",
"dev-tools:setup": "cd ./dev-tools && npm i && npm link ../lib",
"dev-tools:build": "cd ./dev-tools && npm run build",
"docs": "cd docs-src && npm run dev",
"docs:setup": "cd ./docs-src && npm i && npm link ../lib",
"docs:build": "rm -rf docs && cd ./docs-src && npm run build && yes | cp -rf .docz/dist ../docs",
"hacker-news": "cd examples/hacker-news && npm start",
"hacker-news:setup": "cd ./examples/hacker-news && npm i && npm link ../../lib",
"hacker-news:build": "cd ./examples/hacker-news && npm run build && yes | cp -rf ./build ../../docs/hacker-news",
"pong": "cd examples/pong && npm start",
"pong:setup": "cd ./examples/pong && npm i && npm link ../../lib",
"pong:build": "cd ./examples/pong && npm run build && yes | cp -rf ./build ../../docs/pong"
},
"author": "James M. Friedman",
"license": "ISC"
}