forked from tahq69/vue-notice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.05 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
{
"name": "crip-vue-notice",
"version": "1.1.1",
"description": "A Vue.js project to add global notices on a page.",
"main": "lib/crip-vue-notice.js",
"typings": "types/index.d.ts",
"files": [
"lib/*",
"types/*"
],
"scripts": {
"test": "mocha-webpack --webpack-config build/webpack.config.test.js --require test/setup.js test/**/*.spec.ts",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot --config build/webpack.config",
"build-app": "cross-env NODE_ENV=production webpack --config build/webpack.config --progress --hide-modules",
"build-lib": "cross-env NODE_ENV=production webpack --config build/webpack.config.lib --progress --hide-modules",
"build": "npm run build-app && npm run build-lib",
"release": "node build/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tahq69/vue-notice.git"
},
"keywords": [
"vue",
"vuejs2",
"crip",
"vue-component"
],
"author": "Igors Krasjukovs <tahq69@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tahq69/vue-notice/issues"
},
"homepage": "https://github.com/tahq69/vue-notice#readme",
"devDependencies": {
"@types/expect": "^1.20.2",
"@types/mocha": "^2.2.45",
"bootstrap-sass": "^3.3.7",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"expect": "^22.0.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^4.1.0",
"mocha-webpack": "^1.0.1",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.19.1",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"url-loader": "^0.6.2",
"vue": "^2.5.13",
"vue-loader": "^13.6.1",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vue-test-utils": "^1.0.0-beta.9",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-node-externals": "^1.6.0"
}
}