-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@nitric/react-animated-term",
"version": "1.0.0",
"description": "React component for rendering animated terminals",
"license": "Apache-2.0",
"files": [
"css/**",
"dist/**"
],
"repository": "https://github.com/nitrictech/react-animated-term",
"author": "Nitric <https://github.com/nitrictech>",
"contributors": [
"David Moore <davemooreuws@gmail.com>"
],
"keywords": [
"react",
"terminal",
"console",
"animation",
"animated"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup ./src/index.ts --clean --format cjs,esm --dts",
"dev": "tsup ./src/index.ts --clean --format cjs,esm --dts --watch",
"license:header:remove": "license-check-and-add remove -f ./licenseconfig.json",
"license:header:add": "license-check-and-add add -f ./licenseconfig.json",
"license:header:check": "license-check-and-add check -f ./licenseconfig.json",
"license:check": "licensee --production",
"test": "jest",
"test:coverage": "jest --coverage",
"coverage:upload": "yarn run test:coverage && codecov",
"prettier:check": "prettier --check src",
"prettier:fix": "prettier --write src",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"start": "yarn --cwd examples/create-react-app start",
"build-example": "yarn --cwd examples/create-react-app build",
"install-example": "yarn --cwd examples/create-react-app install",
"link-example": "yarn --cwd examples/create-react-app link \"@nitric/react-animated-term\""
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"classnames": "^2.3.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"codecov": "^3.8.3",
"eslint": "^8.8.0",
"husky": "^6.0.0",
"jest": "^27.4.7",
"license-check-and-add": "^4.0.2",
"licensee": "^8.2.0",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
},
"lint-staged": {
"src/**/*.{ts}": "yarn prettier:fix && lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license-check-config": {
"src": [
"src/**/*.ts",
"!./examples/**/*",
"!./node_modules/**/*"
],
"path": "assets/license_header.txt",
"blocking": true,
"logInfo": false,
"logError": true
}
}