forked from frintjs/frint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "frint",
"version": "0.4.5",
"description": "Framework for building front-end apps",
"main": "./lib/index.js",
"scripts": {
"build": "webpack",
"transpile": "babel src --out-dir lib",
"lint": "eslint --color '{src,test}/**/*.js'",
"test": "istanbul cover $(npm bin)/../mocha/bin/_mocha --",
"coverage:coveralls": "cat ./coverage/lcov.info | $(npm bin)/../coveralls/bin/coveralls.js && rm -Rf ./coverage",
"alex:docs": "alex",
"alex:code": "for file in $(find . -path ./node_modules -prune -o -name '*.js' -print); do echo \"\nchecking $file:\" && cat $file | ./node_modules/.bin/alex; done",
"alex": "npm run alex:docs && npm run alex:code",
"docs:prepare": "gitbook install",
"docs:clean": "rimraf _book",
"docs:build": "npm run docs:prepare && gitbook build -g Travix-International/frint",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:Travix-International/frint gh-pages --force",
"prepublish": "npm run transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Travix-International/frint.git"
},
"author": {
"name": "Travix International",
"url": "http://travix.com"
},
"contributors": [
{
"name": "Fahad Ibnay Heylaal",
"url": "https://github.com/fahad19"
},
{
"name": "Ricardo Machado",
"url": "https://github.com/mAiNiNfEcTiOn"
},
{
"name": "Mark Vincze",
"url": "https://github.com/markvincze"
},
{
"name": "Alex Miranda",
"url": "https://github.com/alexmiranda"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Travix-International/frint/issues"
},
"homepage": "https://github.com/Travix-International/frint#readme",
"dependencies": {
"lodash": "^4.13.1",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"rxjs": "^5.0.0-beta.10"
},
"devDependencies": {
"alex": "^3.1.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-preset-travix": "^1.1.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.3.1",
"eslint-config-travix": "^1.3.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-react": "^5.2.2",
"gitbook-cli": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
}
}