-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "tkat",
"version": "0.7.0",
"description": "Analyse Kanban metrics from a Trello board",
"keywords": [
"trello",
"kanban",
"CFD"
],
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
"private": true,
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "brunch w -s",
"lint": "node_modules/.bin/eslint app",
"unit-test": "node_modules/.bin/babel-tape-runner app/**/*-test.js",
"unit-test-diff": "npm run unit-test | node_modules/.bin/tap-diff",
"test": "npm run lint && npm run unit-test",
"release": "npm test && rm -rf public && brunch b -p && touch public/.nojekyll",
"deploy": "npm run release && (cd public && git init && git add . && git commit -m \"Deploy to GitHub Pages\" && git push --force \"git@github.com:nicoespeon/trello-kanban-analysis-tool.git\" master:gh-pages)"
},
"dependencies": {
"@cycle/core": "6.0.3",
"@cycle/dom": "9.1.0",
"@cycle/isolate": "1.2.0",
"@cycle/storage": "2.0.3",
"autoprefixer": "6.3.6",
"d3": "3.5.17",
"moment": "2.12.0",
"nvd3": "1.8.2",
"ramda": "0.19.1",
"rx": "4.1.0"
},
"devDependencies": {
"auto-reload-brunch": "1.8.0",
"babel": "6.5.2",
"babel-brunch": "6.0.4",
"babel-plugin-ramda": "1.1.5",
"babel-preset-es2015": "6.9.0",
"babel-tape-runner": "2.0.1",
"brunch": "2.8.2",
"css-brunch": "2.0.0",
"eslint": "2.10.2",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.8.0",
"eslint-plugin-jsx-a11y": "1.2.2",
"eslint-plugin-react": "5.1.1",
"javascript-brunch": "1.7.1",
"postcss-brunch": "0.5.0",
"sass-brunch": "1.9.1",
"tap-diff": "0.1.1",
"tape": "4.4.0"
}
}