forked from vegarang/DOMReplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 KB
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
{
"name": "domreplay",
"version": "1.0.0",
"description": "domreplay",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --open",
"build-dist": "webpack -p --config webpack.prod.js",
"build": "webpack --config webpack.prod.js && npm run build-lib",
"build-lib": "rm -rf lib && babel src/js -d lib",
"watch": "babel src/js -d lib --watch",
"build-docs": "esdoc",
"open-docs": "open ./docs/index.html",
"test": "jest",
"clean": "rm -rf lib dist docs"
},
"keywords": [
"Es6",
"Webpack",
"Sass"
],
"author": "Eskil Opdahl Nordland",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"css-loader": "^0.28.7",
"esdoc": "^1.0.4",
"esdoc-custom-theme": "^1.4.2",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-publish-html-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"extract-text-webpack-plugin": "^3.0.1",
"font-awesome": "^4.7.0",
"fs": "0.0.1-security",
"jest": "^22.4.3",
"jest-localstorage-mock": "^2.2.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"webpack-merge": "^4.1.0"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eskalol/DOMReplay.git"
},
"bugs": {
"url": "https://github.com/Eskalol/DOMReplay/issues"
},
"homepage": "https://eskalol.github.io/DOMReplay/"
}