-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "monkberry",
"version": "4.0.8",
"description": "Monkberry is a JavaScript library for building web user interfaces",
"bin": "bin/monkberry",
"main": "lib/index.js",
"browser": "./monkberry.js",
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"test": "testem ci -l phantomjs",
"build:parser": "preprocess src/parser/grammar.jison ./src/parser > src/parser/grammar.full.jison && jison src/parser/grammar.full.jison -o src/parser/index.js",
"build": "babel -d lib/ src/",
"watch": "babel -w -d lib/ src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monkberry/monkberry.git"
},
"keywords": [
"dom",
"template",
"view",
"ui"
],
"author": "Anton Medvedev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/monkberry/monkberry/issues"
},
"homepage": "https://monkberry.js.org",
"dependencies": {
"commander": "^2.9.0",
"source-map": "^0.5.6",
"asciitree": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"jasmine": "^2.4.1",
"jison": "^0.4.17",
"preprocessor": "^1.4.0",
"testem": "^1.8.1"
}
}