-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "@scottdj92/image-crossfade-react",
"version": "1.0.1",
"description": "A crossfade image component built in React",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "[email protected]:scottdj92/image-crossfade-react.git",
"author": "<[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "parcel ./dev/index.html",
"build": "rollup -c"
},
"dependencies": {
"react": "^16.4.2"
},
"publishConfig": { "registry": "https://npm.pkg.github.com/@scottdj92" },
"devDependencies": {
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"csstype": "^2.5.6",
"jest": "^23.5.0",
"parcel-bundler": "^1.9.7",
"react-dom": "^16.4.2",
"rollup": "^0.64.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}