forked from demisto/sane-reports
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 4.61 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "sane-reports",
"version": "1.0.3",
"description": "Reports library that will keep you sane and not pulling your hair out. sane-report is a library that helps you to generate headless reports according to simple language.",
"homepage": "https://www.demisto.com",
"author": "Demisto (Doron Sharon)",
"repository": {
"type": "git",
"url": "https://github.com/demisto/sane-reports"
},
"license": "Apache License Version 2.0",
"bugs": {
"url": "https://github.com/demisto/sane-reports"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && webpack",
"production": "NODE_ENV=production npm run build -- --progress --env.production",
"start": "./node_modules/.bin/webpack-dev-server --content-base ./dist --port 8082 --no-info --colors",
"start-prod": "NODE_ENV=production webpack-dev-server --content-base ./dist --port 8082 --no-info --colors --config webpack.production.config.js",
"generate-report": "./reportsServer-macos templates/test.json",
"devtools": "DEV_TOOLS=1 npm start",
"lint": "eslint src tests",
"make": "cd reportService && npm run build",
"test": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha -- tests -R spec --compilers js:babel-core/register,css:null-compiler.js --require ./tests/helpers/helper.js --recursive --check-leaks",
"test-no-cover": "NODE_ENV=test mocha tests -R spec --compilers js:babel-core/register,css:null-compiler.js --require ./tests/helpers/helper.js --recursive --check-leaks",
"coverage": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- tests -R spec --compilers js:babel-core/register,css:null-compiler.js --require ./tests/helpers/helper.js --recursive --check-leaks && cat ./coverage/lcov.info | COVERALLS_SERVICE_NAME=circle-ci COVERALLS_REPO_TOKEN=BpaCDz1aFLckIylCx4YIG6uiu1xXU0r66 ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "npm run test-no-cover -- -w",
"check": "npm run lint && npm run test",
"check-versions": "ncu"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.25.0",
"classnames": "2.2.5",
"generic-react-json-inspector": "6.1.6",
"jquery": "3.2.1",
"less": "2.7.2",
"markdown-it-abbr": "1.0.4",
"markdown-it-container": "2.0.0",
"markdown-it-deflist": "2.0.1",
"markdown-it-emoji": "1.3.0",
"markdown-it-footnote": "3.0.1",
"markdown-it-ins": "2.0.0",
"markdown-it-mark": "2.0.0",
"markdown-it-sub": "1.0.0",
"markdown-it-sup": "1.0.0",
"moment": "2.21.0",
"moment-timezone": "0.5.14",
"parse-link-header": "0.4.1",
"postcss-reporter": "1.4.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-grid-layout": "0.16.2",
"react-highlight": "0.10.0",
"react-markdown-js": "0.5.0",
"react-pure-render": "1.0.2",
"react-virtualized": "9.16.1",
"recharts": "1.0.0-beta.5",
"seedrandom": "2.4.3",
"semantic-ui": "2.2.11",
"whatwg-fetch": "1.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "3.5.1",
"babel-core": "6.25.0",
"babel-eslint": "6.1.1",
"babel-loader": "7.1.1",
"babel-plugin-react-transform": "2.0.2",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "3.5.0",
"coveralls": "2.11.9",
"css-loader": "0.28.4",
"enzyme": "2.4.1",
"eslint": "3.0.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.10.2",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.29.0",
"http-server": "0.10.0",
"image-webpack-loader": "3.3.1",
"istanbul": "1.0.0 || 1.1.0-alpha.1",
"jsdom": "9.4.1",
"json-loader": "0.5.7",
"less-loader": "4.0.5",
"lodash": "4.17.4",
"mocha": "2.5.3",
"mocha-lcov-reporter": "1.2.0",
"node-libs-browser": "2.0.0",
"normalize.css": "7.0.0",
"npm-check-updates": "2.12.1",
"phantomjs-prebuilt": "2.1.14",
"postcss": "6.0.8",
"postcss-cssnext": "3.0.2",
"postcss-import": "10.0.0",
"postcss-loader": "2.0.6",
"postcss-url": "7.1.1",
"react-addons-test-utils": "15.6.0",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.4.3",
"style-loader": "0.18.2",
"watch-http-server": "0.7.6",
"webpack": "3.4.1",
"webpack-dev-middleware": "1.11.0",
"webpack-dev-server": "^2.6.1",
"webpack-hot-middleware": "2.18.2",
"webpack-livereload-plugin": "0.11.0",
"webpack-shell-plugin": "0.5.0"
}
}