forked from lorengreenfield/halfcab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
60
61
62
63
64
65
{
"name": "halfcab",
"version": "5.1.0",
"description": "A simple universal JavaScript framework focused on making use of es2015 template strings to build components.",
"main": "dist/halfcab.js",
"module": "halfcab.js",
"jsnext:main": "halfcab.js",
"scripts": {
"test": "mocha --require reify test.js **/test.js",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "rollup halfcab.js --format cjs --output dist/halfcab.js",
"versionbump:fix": "npm version patch --no-git-tag-version",
"versionbump:feature": "npm version minor --no-git-tag-version",
"versionbump:breakingchanges": "npm version major --no-git-tag-version",
"build-publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lorengreenfield/halfcab.git"
},
"keywords": [
"newschool",
"oldschool",
"data",
"binding",
"es2015",
"es6",
"component"
],
"author": "Loren Greenfield",
"license": "MIT",
"bugs": {
"url": "https://github.com/lorengreenfield/halfcab/issues"
},
"homepage": "https://github.com/lorengreenfield/halfcab#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"decache": "^4.1.0",
"dirty-chai": "^2.0.1",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.2.1",
"proxyquire": "^1.8.0",
"reify": "^0.12.3",
"rollup": "^0.50.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0"
},
"dependencies": {
"axios": "^0.16.2",
"bel": "^5.1.3",
"csjs-inject": "^1.0.1",
"deep-freeze": "0.0.1",
"deepmerge": "^2.0.0",
"event-emitter": "^0.3.5",
"html-entities": "^1.2.1",
"marked": "^0.3.6",
"nanomorph": "^5.1.3",
"qs": "^6.5.1",
"sheet-router": "^4.2.3"
}
}