-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "konami-listener",
"version": "0.3.0",
"description": "Konami Code listener as a Vanilla Web Component",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "jest",
"test.watch": "jest --watch"
},
"devDependencies": {
"@stencil/core": "^0.11.0",
"@types/jest": "^23.3.1",
"jest": "^23.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natemoo-re/konami-listener.git"
},
"author": "Nate Moore",
"license": "MIT",
"bugs": {
"url": "https://github.com/natemoo-re/konami-listener"
},
"homepage": "http://projects.natemoo.re/konami-listener",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}