-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "typescript-string-enums",
"version": "1.0.0",
"description": "Typesafe string enums in TypeScript pre-2.4.",
"main": "dist/index.js",
"types": "dist/index",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git://github.com/dphilipson/typescript-string-enums.git"
},
"keywords": [
"typescript",
"string",
"enum"
],
"author": "David Philipson <[email protected]> (http://dphil.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dphilipson/typescript-string-enums/issues"
},
"homepage": "https://github.com/dphilipson/typescript-string-enums#readme",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn run clean && tsc",
"jest": "jest",
"jest-watch": "yarn run jest -- --watch",
"lint": "tslint --project .",
"prepublish": "yarn run build",
"test": "yarn run lint && tsc --noEmit && yarn run jest",
"watch": "yarn run clean && tsc --watch"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"jest": "^18.1.0",
"ts-jest": "^18.0.1",
"tslint": "^4.3.1",
"typescript": "^2.2.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}