-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (57 loc) · 1.16 KB
/
package.json
File metadata and controls
58 lines (57 loc) · 1.16 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
{
"name": "type-array-convert",
"version": "0.0.1",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint 'index.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rearn/type-array-convert.git"
},
"author": "minamibashi rearn <minamibashi@rearn.info> (https://github.com/rearn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rearn/type-array-convert/issues"
},
"homepage": "https://github.com/rearn/type-array-convert#readme",
"keywords": [
"TypeArray",
"Uint8Array",
"Uint16Array",
"Uint32Array",
"typescript"
],
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.2"
},
"engines": {
"node": ">=6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.ts"
]
}
}