-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "@dcmox/stencil-js",
"version": "1.0.8",
"private": false,
"description": "Just another template engine written in TypeScript. Mustache compatible!",
"main": "stencil.js",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.24",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"sinon": "^7.5.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"typescript": "3.7.2"
},
"scripts": {
"lint": "eslint \"*.ts\"",
"test": "jest tests/*",
"build": "npm run build:main && npm run build:demo",
"build:main": "tsc stencil.ts",
"build:demo": "tsc tests/usage.ts",
"watch": "tsc -w tests/usage.ts",
"test-usage": "node tests/usage.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmox/stencil-js.git"
},
"keywords": [
"template",
"engine",
"parser",
"stenciljs",
"mustache",
"handlebars"
],
"author": "Daniel Moxon (dancmox@comcast.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcmox/stencil-js/issues"
},
"homepage": "https://github.com/dcmox/stencil-js#readme",
"dependencies": {}
}