-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
61
62
63
{
"name": "@wonderlandlabs/forest",
"version": "2.0.14",
"description": "React State Machine",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"test-watch": "jest --config jest.config.js --watch",
"bt": "npm run build && npm run test",
"btw": "npm run build && npm run test-watch",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebertcisco/ts-npm-package-boilerplate.git"
},
"keywords": [
"boilerplate",
"typescript"
],
"author": "David Edelhart",
"license": "MIT",
"bugs": {
"url": "https://github.com/bingomanatee/forest/issues"
},
"homepage": "https://github.com/bingomanatee/forest",
"devDependencies": {
"@types/jest": "29.2.4",
"@types/lodash.clonedeep": "^4.5.0",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.sortby": "^4.7.7",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"eslint": "8.29.0",
"eslint-plugin-jest": "27.1.6",
"jest": "29.3.1",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"typescript": "4.9.4",
"uglify-js": "^3.17.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@wonderlandlabs/collect": "^1.0.2",
"@wonderlandlabs/transact": "^0.0.10",
"immer": "^9.0.19",
"lodash.isequal": "^4.5.0",
"rxjs": "^7.8.0",
"uuid": "^9.0.0"
}
}