-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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
{
"name": "history-visualizer",
"version": "0.1.3",
"description": "History Visualizer is a tool for recording, inspecting, and traversing browser history.",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"docs": "typedoc --out ./docs ./src/**/*.ts",
"ext:build": "node ./scripts/ext/build.js",
"ext:dist": "npm run ext:build && npm run ext:zip",
"ext:zip": "node ./scripts/ext/zip.js",
"lint:scripts": "tslint './src/**/*.ts*'",
"lint:scripts:fix": "tslint --fix './src/**/*.ts*'",
"preversion": "node ./scripts/version/pre.js",
"test": "mocha --require ts-node/register --require ignore-styles --require babel-core/register --require ./test/bootstrap --recursive ./test",
"test:coverage": "nyc npm run test"
},
"author": "Jesse R Mykolyn",
"license": "ISC",
"devDependencies": {
"@types/node": "^10.12.18",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.11",
"@types/redux": "^3.6.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"css-loader": "^0.28.11",
"fs-extra": "^7.0.1",
"ignore-styles": "^5.0.1",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"node-sass": "^4.9.0",
"nyc": "^13.1.0",
"sass-loader": "^7.0.1",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"style-loader": "^0.21.0",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.13.0",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1"
}
}