-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 881 Bytes
/
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
{
"name": "lit-transformer",
"version": "1.0.2",
"main": "src/lit-transformer-configuredOutOfTheBox.js",
"license": "ISC",
"description": "transforms a mustache like template into a lit-html template",
"keywords": [ "template", "transform", "lit-html", "mustache" ],
"repository": {
"type": "git",
"url": "https://github.com/shaman-apprentice/lit-transformer.git"
},
"files": [
"/src/",
"!/**/test/"
],
"author": "shaman-apprentice",
"private": false,
"scripts": {
"performance-playground": "node ./performance/run/run.js",
"test": "jest --config test/config/jest.config.js"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chart.js": "^2.8.0",
"dom-compare": "^0.3.2",
"jest": "^24.1.0",
"lit-html": "^1.1.0",
"mustache": "^3.0.1",
"puppeteer": "^1.13.0"
}
}