-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "@bitjson/qr-code",
"version": "1.0.2",
"description": "QR Code 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",
"watch": "stencil build --dev --watch --serve",
"watch:prod": "stencil build --watch --serve --prod",
"serve": "stencil-dev-server",
"start": "npm run watch",
"test": "jest",
"test.watch": "jest --watch"
},
"devDependencies": {
"@stencil/core": "^0.10.2",
"@types/jest": "^21.1.1",
"jest": "^21.2.1",
"just-animate": "^2.5.0",
"qrcode-generator": "^1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitjson/qr-code.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bitjson/qr-code"
},
"homepage": "https://qr.bitjson.com",
"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"
]
}
}