-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "@do-while-for-each/tree-cell",
"description": "Another implementation of pull-based reactivity",
"version": "1.1.2",
"exports": "./dist/cjs/index.js",
"typesVersions": {
"*": {
"*": [
"dist/types/*"
]
}
},
"homepage": "https://github.com/dwfe/tree-cell",
"bugs": "https://github.com/dwfe/tree-cell/issues",
"repository": {
"type": "git",
"url": "git@github.com:dwfe/tree-cell.git"
},
"keywords": [],
"author": "Do|While|For|Each",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@do-while-for-each/common": "3.x.x"
},
"devDependencies": {
"@do-while-for-each/tsconfig": "1.x.x",
"@do-while-for-each/test": "1.x.x"
},
"scripts": {
"clean": "dwfeFs cleanDir . --fileNames=\"dist;node_modules;package-lock.json\"",
"bootstrap": "npm run clean && npm install",
"build": "dwfeFs rmForce dist --noConfirm && tsc -b src/tsconfig.json",
"test": "jest --config=src/__tests__/jest.config.js",
"version": "npm run build && npm run test",
"deploy": "npm version patch && npm publish",
"tgz": "npm run build && npm pack"
},
"publishConfig": {
"access": "public"
}
}