This repository has been archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
51 lines (51 loc) · 1.91 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
{
"name": "pulse-framework",
"version": "4.0.0",
"description": "Global state and logic framework for reactive JavaScript & TypeScript applications.",
"license": "MIT",
"author": {
"name": "Jamie Pine",
"url": "https://github.com/jamiepine"
},
"files": [
"dist",
"package.json",
"LICENCE"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pulse-framework/pulse"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"remove:build": "rimraf packages/**/dist packages/**/tsconfig.tsbuildinfo",
"remove:install": "lerna clean && rimraf node_modules",
"setup:react": "yarn build && (cd packages/pulse-react && yarn link) && (cd packages/pulse-core && yarn link) && (cd examples/typescript/core && yarn link @pulsejs/core && yarn link) && (cd examples/typescript/react && yarn link @pulsejs/react && yarn link @pulsejs/core && yarn link pulse-example-core)",
"test:react": "(cd examples/typescript/react && yarn start)",
"test:core": "(cd examples/typescript/core && tsc -W)",
"build": "yarn remove:build && tsc -b packages/pulse-core packages/pulse-react packages/pulse-vue packages/pulse-next",
"dev": "yarn remove:build && tsc -b --watch packages/pulse-core packages/pulse-react packages/pulse-vue packages/pulse-next",
"test": "jest",
"release": "yarn build && lerna publish --force-publish",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs --dest ./docs/dist/",
"now-build": "yarn run docs:build",
"postinstall": "git config --local core.hooksPath .githooks"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^8.0.28",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.4.2",
"lerna": "^2.9.0",
"prettier": "2.0.5",
"rimraf": "^2.6.2",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7",
"vuepress": "^1.5.4"
},
"workspaces": [
"packages/*"
]
}