-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "dot-dom",
"version": "0.3.1",
"description": "A tiny (less than 512 byte) template engine that uses virtual DOM and some of react principles",
"main": "src/dotdom.js",
"files": [
"src/dotdom.js",
"src/plugins/keyed.js",
"dist/dotdom.min.js",
"dist/dotdom.min.js.gz",
"dist/plugin-keyed.min.js",
"dist/plugin-keyed.min.js.gz"
],
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "./node_modules/.bin/gulp build",
"watch": "./node_modules/.bin/gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavesoft/dotdom.git"
},
"keywords": [
"react",
"virtualdom",
"template"
],
"author": "Ioannis Charalampidis",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wavesoft/dotdom/issues"
},
"homepage": "https://github.com/wavesoft/dotdom#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-preset-minify": "^0.5.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-brotli": "^1.2.1",
"gulp-cat": "^0.3.3",
"gulp-cli": "^2.0.1",
"gulp-clone": "^2.0.1",
"gulp-gzip": "^1.4.0",
"gulp-merge": "^0.1.1",
"gulp-rename": "^1.2.2",
"gulp-strip-code": "^0.1.4",
"gulp-uglify-es": "^1.0.4",
"gulp-util": "^3.0.8",
"handlebars": ">=4.1.2",
"jest": "^24.1.0",
"js-yaml": ">=3.13.1",
"minimatch": ">=3.0.2",
"mock-browser": "^0.92.12",
"npm-check-updates": "^2.15.0",
"through2": "^3.0.0",
"watch": "^1.0.1"
}
}