-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 994 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 994 Bytes
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
{
"name": "jsx-templating",
"version": "0.0.13",
"description": "Micro templating library using JSX syntax.",
"main": "build/jsx-templating.js",
"scripts": {
"build": "mkdir -p build && browserify -s jsx-templating -t babelify index.js | bfc > build/jsx-templating.js && browserify -s demo -e demo/demo.js -t babelify > demo/demo-built.js",
"test": "karma start --single-run --browsers Firefox",
"test-watch": "karma start"
},
"keywords": [
"template",
"jsx"
],
"repository": {
"type": "git",
"url": "git@github.com:wwalser/jsx-templating.git"
},
"author": "Wesley Walser",
"license": "MIT",
"dependencies": {
"virtual-element": "^1.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.3.0",
"bfc": "^0.3.1",
"browserify": "^11.0.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6"
}
}