-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "react-itinerary",
"version": "0.0.2",
"description": "Render react components based on time sequences such as video or audio files.",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "rimraf lib && tsc",
"build:docs": "webpack -p",
"dev-server": "webpack-dev-server",
"prepublish": "npm run test && npm run build && npm run build:docs",
"coverage:upload": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "jest"
},
"keywords": [
"video",
"audio",
"render",
"react",
"timeline",
"itinerary"
],
"author": "Zach Ripka",
"license": "MIT",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": true,
"mapCoverage": true
},
"devDependencies": {
"@types/enzyme": "^2.8.4",
"@types/jest": "^20.0.5",
"@types/prop-types": "^15.5.1",
"@types/react": "^15.6.0",
"@types/react-dom": "^15.5.1",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.7",
"ts-loader": "^2.3.2",
"typescript": "^2.4.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zachrip/react-itinerary.git"
},
"bugs": {
"url": "https://github.com/zachrip/react-itinerary/issues"
},
"homepage": "https://github.com/zachrip/react-itinerary#readme"
}