forked from silentHoo/stencil-components-spike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "stencil-components-spike",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "dist/stencil-components-spike.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"browser": "dist/stencil-components-spike.js",
"scripts": {
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest --no-cache",
"test.watch": "jest --watch --no-cache",
"build:doc": "./gendocs.sh",
"build:doc.watch": "watch 'yarn build:doc' src/**/cs-*"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-beta.41",
"@babel/cli": "^7.0.0-beta.41",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.41",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.41",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.41",
"@babel/plugin-syntax-jsx": "^7.0.0-beta.41",
"@babel/preset-env": "^7.0.0-beta.41",
"@babel/preset-typescript": "^7.0.0-beta.41",
"@stencil/sass": "0.0.3",
"jsdoc": "^3.5.5",
"jsdoc-babel": "^0.4.0-alpha.0",
"jsdoc-to-markdown": "^4.0.1",
"watch": "^1.0.2",
"@stencil/core": "^0.7.22",
"@stencil/dev-server": "latest",
"@stencil/utils": "latest",
"@types/jest": "^21.1.1",
"jest": "^21.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-component-starter.git"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil"
},
"homepage": "https://github.com/ionic-team/stencil",
"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"
]
}
}