This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
111 lines (111 loc) · 3.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"author": {
"name": "Derrick Beining",
"url": "https://github.com/derrickbeining"
},
"bugs": {
"url": "https://github.com/derrickbeining/react-atom/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@libre/atom": "^1.3.2"
},
"description": "State management made simple for React. Built on React Hooks. Inspired by `atom`s in `reagent.cljs`.",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/travis-cli": "^7.2.1",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.9",
"@types/ramda": "^0.25.41",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-test-renderer": "^16.9.1",
"@types/webpack": "^4.4.19",
"babel-loader": "^8.0.4",
"codecov": "^3.1.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^3.0.2",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"husky": "^1.1.4",
"jest": "^23.6.0",
"jest-dom": "^2.1.1",
"nyc": "^14.1.1",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"prettier": "^1.15.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"react-testing-library": "^5.9.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.6.3",
"source-map-support": "^0.5.6",
"travis-deploy-once": "^5.0.1",
"ts-jest": "^23.10.4",
"ts-loader": "^6.2.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typedoc": "^0.13.0",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "^3.1.6",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"files": [
"dist",
"package.json",
"LICENSE"
],
"homepage": "https://derrickbeining.github.io/react-atom/",
"husky": {
"hooks": {
"pre-commit": "./scripts/precommit.sh",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"react",
"hooks",
"useState",
"state-management",
"cljs",
"atom",
"reagent"
],
"license": "MIT",
"main": "dist/react-atom.js",
"name": "@dbeining/react-atom",
"peerDependencies": {
"react": ">=16.7.0-alpha.0 || >=16.8.0-alpha.0 || >= 16.8.0 < 17",
"react-dom": ">=16.7.0-alpha.0 || >=16.8.0-alpha.0 || >= 16.8.0 < 17"
},
"repository": {
"type": "git",
"url": "https://github.com/derrickbeining/react-atom.git"
},
"scripts": {
"build": "npm run clean && NODE_ENV=production webpack",
"build:dev": "npm run clean && webpack",
"build:docs": "rimraf docs && typedoc --options typedoc.js src",
"clean": "rimraf dist",
"git:commit": "npx git-cz",
"dev": "npm run test -- --watch",
"lint": "tslint --project .",
"lint:fix": "tslint --project --fix",
"semantic-release": "semantic-release",
"test": "jest --env=jsdom",
"test:withCoverage": "jest --env=jsdom --collectCoverage",
"travis-deploy-once": "travis-deploy-once"
},
"sideEffects": false,
"types": "dist/react-atom.d.ts",
"version": "0.0.0-development"
}