This repository was archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.39 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.39 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
{
"name": "ts_assets-rails",
"private": true,
"version": "0.1.0",
"description": "Rails assets helper for TypeScript",
"engines": {
"node": ">= 6.0",
"npm": ">= 5.3"
},
"scripts": {
"test": "jest",
"lint": "tslint --format verbose '__tests__/**/*.{ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bitjourney/ts_assets-rails.git"
},
"conntributors": [
{
"name": "FUJI Goro",
"email": "goro-fuji@bitjourney.com"
},
{
"name": "kenju"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitjourney/ts_assets-rails/issues"
},
"homepage": "https://github.com/bitjourney/ts_assets-rails#readme",
"dependencies": {},
"peerDependencies": {
"react": "^15 || ^16"
},
"devDependencies": {
"@types/enzyme": "^3",
"@types/jest": "^22",
"@types/react": "^16",
"@types/react-dom": "^16",
"enzyme": "^3",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22",
"react": "^16",
"react-dom": "^16",
"react-test-renderer": "^16",
"ts-jest": "^22",
"tslint": "*",
"typescript": "*"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/ts_assets_spec.tsx$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}