-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.43 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.43 KB
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
{
"name": "@universal-apps/today",
"author": {
"name": "Prashanth R",
"url": "https://github.com/prashanthr"
},
"private": false,
"repository": "https://github.com/prashanthr/today-cli",
"version": "1.2.3",
"license": "MIT",
"bin": {
"today": "src/cli/index.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "node ./src/cli/index.js",
"test": "xo && ava",
"release": "standard-version",
"save-release": "git push --follow-tags origin master",
"takeoff": "npm run release && npm run save-release && npm publish"
},
"files": [
"src/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^0.20.0",
"import-jsx": "^4.0.0",
"ink": "^3.0.5",
"ink-link": "^2.0.0",
"ink-spinner": "^4.0.1",
"lodash": "^4.17.20",
"meow": "^7.1.1",
"react": "^16.13.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"ava": "^3.12.1",
"chalk": "^4.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"ink-testing-library": "^2.0.1",
"standard-version": "^9.0.0",
"xo": "^0.33.1"
},
"ava": {
"babel": true,
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
}
}