forked from elixir-lang/ex_doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "ex_doc",
"description": "ExDoc produces HTML and EPUB documentation for Elixir projects.",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 5.6.0"
},
"scripts": {
"lint": "npx eslint \"./assets/js/**/*.js\"",
"test": "npx karma start ./assets/karma.conf.js --single-run",
"watch": "webpack --config ./assets/webpack/development.js --watch",
"build": "webpack --config ./assets/webpack/production.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elixir-lang/ex_doc.git"
},
"author": "Plataformatec",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elixir-lang/ex_doc/issues"
},
"homepage": "https://github.com/elixir-lang/ex_doc#readme",
"browserslist": "last 2 versions",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^2.0.0",
"flex.less": "^1.1.0",
"handlebars": "^4.1.2",
"handlebars-loader": "^1.7.0",
"highlight.js": "9.11.x",
"jquery": "^3.4.0",
"karma": "^3.0.0",
"karma-chai-plugins": "^0.6.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^4.0.0-rc.2",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"less-plugin-autoprefix": "^1.4.2",
"less-plugin-npm-import": "^2.1.0",
"lodash.find": "^4.6.0",
"lodash.throttle": "^4.1.1",
"lunr": "^2.3.5",
"mini-css-extract-plugin": "^0.4.2",
"mocha": "^5.2.0",
"normalize.css": "^8.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.19.0",
"webpack-command": "^0.4.1",
"webpack-merge": "^4.1.4"
}
}