-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "cakejs2",
"version": "0.2.1",
"description": "Lightweight front-end framework with only best parts and features of most awesome frameworks.",
"main": "index.js",
"files": [
"dist",
"contrib",
"lib",
"index.js",
"README.md",
"LICENSE"
],
"devDependencies": {
"browserify": "^13.1.1",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.11.1",
"jsdom": "^9.8.3",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"sinon": "^1.17.6",
"uglify-js": "^2.7.5"
},
"scripts": {
"test": "npm run ci",
"mocha": "mocha tests/**",
"lint": "eslint lib/** tests/**",
"ci": "npm run lint && npm run mocha",
"cov": "nyc npm run ci && nyc report --reporter=text-lcov | coveralls",
"prepublish": "mkdir -p dist && browserify --ignore-missing contrib/dist.js > dist/cake.js && browserify --ignore-missing contrib/dist.js | uglifyjs -c > dist/cake.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linuxenko/cakejs2.git"
},
"keywords": [],
"author": "Svetlana Linuxenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/linuxenko/cakejs2/issues"
},
"homepage": "https://github.com/linuxenko/cakejs2#readme"
}