-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 777 Bytes
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
{
"name": "@sidp/konami-code",
"version": "1.0.1",
"main": "lib/index.js",
"repository": "https://github.com/sidp/konami-code.git",
"author": "Peter Simonsson <peter@simonsson.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"prepublishOnly": "yarn run test && yarn run build"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"prettier": "^1.11.1",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}