-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "mark-template",
"version": "0.2.0",
"description": "JS template engine inspired by JSX and XSLT",
"main": "mark-template.js",
"scripts": {
"build": "browserify -x htmlparser2 mark-template.js | uglifyjs > dist/mark-template.js",
"build-vdom": "browserify -x htmlparser2 adaptor/vdom-adaptor.js > dist/component.js",
"test": "clear && tape test/*.js | tap-spec",
"karma-test": "karma run",
"karma-start": "browserify test/basic.node.js > run/basic.js & karma start",
"karma-stop": "karma stop",
"list": "browserify -x htmlparser2 --full-paths mark-template.js | discify --open"
},
"repository": {
"type": "git",
"url": "https://github.com/henry-luo/mark-template.git"
},
"keywords": [
"template",
"transformation",
"JSX",
"XSLT",
"template engine"
],
"author": "Henry Luo",
"license": "MIT",
"dependencies": {
"mark-js": "^0.8.0"
},
"devDependencies": {
"cp-cli": "^1.1.2",
"disc": "^1.3.3",
"fs-force": "^3.1.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"tap-spec": "^4.1.2",
"tape": "^4.9.1",
"uglify-es": "^3.3.10",
"virtual-dom": "^2.1.1"
}
}