-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
59
{
"name": "bazooka",
"version": "0.9.1",
"description": "Simple tool for declarative binding applications to HTML nodes.",
"main": "src/main.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "npm run lint && npm run test-karma",
"karma": "karma",
"test-karma": "karma start spec/karma.conf.js --single-run",
"lint": "npm run prettier -- -l",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"{src,spec,examples}/**/*.js\" \"webpack.config.examples.js\" --single-quote --trailing-comma=es5",
"preversion": "npm test && npm run docs",
"postversion": "git push && git push --tags",
"docs": "mkdir -p ./docs && jsdoc2md src/main.js > ./docs/README.md && jsdoc2md src/helpers.js > ./docs/helpers.md",
"examples": "webpack --config=webpack.config.examples.js",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "https://github.com/seedofjoy/bazooka.git"
},
"author": "Igor Mozharovsky <[email protected]>",
"contributors": [
{
"name": "Igor Mozharovsky",
"email": "[email protected]"
},
{
"name": "Anton Verinov",
"url": "http://anton.codes",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/seedofjoy/bazooka/issues"
},
"homepage": "https://github.com/seedofjoy/bazooka",
"devDependencies": {
"jasmine-core": "^2.3.4",
"jsdoc-to-markdown": "^1.2.0",
"karma": "1.0.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "^2.0.6",
"kefir": "^3.1.0",
"lodash.zipobject": "4.1.3",
"phantomjs-prebuilt": "2.1.16",
"prettier": "^0.22.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.9.5"
}
}