-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.57 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
{
"name": "r-table-hierarchy",
"version": "0.1.2",
"description": "Hiearchy plughin for aggregated tables that help presenting rowheaders in hierarchical form",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/ConfirmitASA/r-table-hierarchy.git"
},
"scripts": {
"build": "npm run clean && npm run build:prd",
"build:dev": "node_modules/.bin/webpack --config tools/webpack.config.dev.js --progress --colors",
"build:prd": "node_modules/.bin/webpack --config tools/webpack.config.prd.js --progress --colors",
"clean": "rimraf dist build",
"lint": "eslint src",
"docs": "node_modules/.bin/jsdoc --configure jsdoc.conf --verbose",
"docs-commit": "git subtree push --prefix docs/r-table-hierarchy/0.1.2 origin gh-pages",
"test": "karma start --single-run --no-auto-watch karma.config.js",
"report-coverage": "codecov -f coverage/lcov.info"
},
"keywords": [],
"author": "ConfirmitASA",
"license": "",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.6.0",
"babel-istanbul-loader": "^0.0.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.23.1",
"docdash": "^0.4.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine-core": "^2.4.1",
"jsdoc": "^3.4.0",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^0.3.6",
"karma-jasmine-ajax": "^0.1.13",
"karma-jasmine-jquery": "^0.1.1",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"loader-utils": "^0.2.12",
"postcss": "^5.0.21",
"postcss-apply": "^0.2.0",
"postcss-cssnext": "^2.6.0",
"postcss-import": "^8.1.2",
"postcss-inline-svg": "trysound/postcss-inline-svg",
"r-visual-fixture-test": "github:confirmitasa/r-visual-fixture-test",
"postcss-loader": "^0.9.1",
"rimraf": "^2.5.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"codecov": ">1.0.0"
},
"dependencies": {
"r-aggregated-table": "github:confirmitasa/r-aggregated-table",
"r-highlight": "github:confirmitasa/r-highlight",
"r-reportal-base": "github:confirmitasa/r-reportal-base",
"r-sort-table": "github:confirmitasa/r-sort-table"
}
}