This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.52 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
{
"name": "@deliciousbrains/serialized-editor",
"description": "A Vue.js component for editing data that has been serialized in PHP",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "git+https://github.com/deliciousbrains/serialized-editor.git"
},
"bugs": {
"url": "https://github.com/deliciousbrains/serialized-editor/issues"
},
"keywords": [
"vue",
"vuejs",
"serialized",
"editor"
],
"author": "Gilbert Pellegrom <[email protected]>",
"license": "MIT",
"main": "dist/serialized-editor.js",
"module": "src/index.js",
"scripts": {
"lib:dev": "cross-env NODE_ENV=development webpack --config build/webpack.lib.js --watch --progress --hide-modules",
"lib:build": "cross-env NODE_ENV=production webpack --config build/webpack.lib.js --progress --hide-modules",
"app:dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.app.js --open --hot",
"app:build": "npm run lib:build && cross-env NODE_ENV=production webpack --config build/webpack.app.js --progress --hide-modules",
"release": "npm run lib:build && npm run app:build",
"unit:dev": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit",
"build": "npm run app:build",
"start": "http-server ./app"
},
"dependencies": {
"http-server": "^14.1.1",
"vue": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.0.0",
"chai": "^4.0.2",
"chromedriver": "^103.0.0",
"cross-env": "^3.0.0",
"cross-spawn": "^5.1.0",
"css-loader": "^1.0.1",
"file-loader": "^0.9.0",
"inject-loader": "^3.0.0",
"karma": "^5.2.3",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.3",
"lolex": "^1.6.0",
"mocha": "^8.1.3",
"nightwatch": "^1.4.3",
"phantomjs-prebuilt": "^2.1.14",
"selenium-server": "^3.4.0",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0",
"style-loader": "^0.17.0",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}