-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "react-typewriting",
"version": "2.2.0",
"homepage": "https://github.com/williamboman/react-typewriting",
"repository": {
"type": "git",
"url": "https://github.com/williamboman/react-typewriting.git"
},
"description": "React component for creating highly customizable typewriting effects.",
"main": "lib/Typewriting.js",
"typings": "lib/Typewriting.d.ts",
"scripts": {
"build": "rm -rf lib/ && tsc --declaration --outDir lib",
"prepublish": "npm run build",
"jest": "jest",
"test": "npm run ts-lint && npm run jest",
"ts-lint": "tsc --noEmit"
},
"keywords": [
"react",
"component",
"typewriting",
"typewriter",
"animation",
"typescript"
],
"author": "William Boman <william@redwill.se>",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.4",
"@types/react": "15.6.19",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"ts-jest": "^23.10.4",
"typescript": "3.1.1"
},
"peerDependenies": {
"react": ">=15"
},
"jest": {
"roots": [
"<rootDir>/__tests__"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupTestFrameworkScriptFile": "<rootDir>/setup-jest.ts"
}
}