-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.3 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
{
"name": "vanilla-tree-viewer",
"version": "2.1.1",
"description": "A directory layout for viewing code files",
"main": "./dist/index.js",
"scripts": {
"lint": "prettier --check src/* && eslint --ext .js --ext .jsx src/ && stylelint src/*",
"lintfix": "prettier --write src/* && eslint --ext .js --ext .jsx --fix src/ && stylelint src/* --fix",
"test": "jest --no-cache --config test/jest.config.js",
"dev": "NODE_ENV=development webpack-dev-server --open --debug --output-pathinfo",
"build": "yarn run lint && yarn run test && rm -rf ./dist ./demo/build && NODE_ENV=production webpack --config webpack.config.js",
"prepublish": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhchand/vanilla-tree-viewer.git"
},
"keywords": [
"code",
"code-viewer",
"directory",
"file",
"files",
"highlighter",
"syntax",
"vanilla",
"viewer"
],
"author": "Abhishek Chandrasekhar <me@abhchand.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhchand/vanilla-tree-viewer/issues"
},
"homepage": "https://github.com/abhchand/vanilla-tree-viewer#README",
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"core-js": "^3.3.3",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"fetch-mock": "^9.10.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"prettier": "^2.4.1",
"sass-loader": "^8.0.0",
"stylelint": "^11.1.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-webpack-plugin": "^1.0.2",
"svg-inline-loader": "^0.8.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"highlight.js": "11.3.1"
}
}