-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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": "improved-map",
"version": "1.2.1",
"description": "Some trivial convenience methods for Maps",
"main": "./dist/improved-map.js",
"module": "./dist/improved-map.js",
"types": "./typings/improved-map.d.ts",
"scripts": {
"tsc": "tsc",
"test": "jest",
"coverage": "jest --coverage"
},
"jest": {
"automock": false,
"globals": {
"ts-jest": {
"skipBabel": true,
"tsConfigFile": "__test__/tsconfig.json"
}
},
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/riggs/improved-map.git"
},
"keywords": [
"Map"
],
"author": "Benjamin Riggs (https://github.com/riggs/)",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/riggs/improved-map/issues"
},
"homepage": "https://github.com/riggs/improved-map#readme",
"devDependencies": {
"jest": "^21.2.1",
"ts-jest": "^21.2.3",
"typescript": "^2.6.2"
},
"files": [
"dist/improved-map.js",
"dist/improved-map.js.map",
"src/improved-map.ts",
"typings/improved-map.d.ts"
]
}