-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "js-dev-console",
"version": "0.1.8",
"description": "JS Dev Console",
"main": "dist/js-dev-console.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"browser": "dist/js-dev-console.js",
"scripts": {
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --es5 --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest --no-cache",
"test.watch": "jest --watch --no-cache"
},
"devDependencies": {
"@stencil/core": "^0.8.0",
"@stencil/dev-server": "latest",
"@stencil/sass": "latest",
"@stencil/utils": "latest",
"@types/jest": "^21.1.1",
"jest": "^21.2.1",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"datalist-polyfill": "^1.13.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Farbdose/js-dev-console"
},
"author": "Farbdose",
"license": "MIT",
"bugs": {
"url": "hhttps://github.com/Farbdose/js-dev-console"
},
"homepage": "https://farbdose.github.io/js-dev-console/",
"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"
]
}
}