forked from ngVue/ngVue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.81 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ngVue",
"author": "Doray Hong <[email protected]>",
"version": "1.7.8",
"description": "Use Vue Components in Angular 1.x",
"main": "build/index.js",
"keywords": [
"javascript",
"migration",
"vue",
"angular",
"ng",
"components",
"ngvue"
],
"scripts": {
"test": "BABEL_ENV=test jest",
"example": "BABEL_ENV=dev webpack-dev-server --inline --hot --config ./example/webpack.config.js --content-base ./example",
"clean": "rm -rf build",
"bundle": "./scripts/bundle.sh",
"format": "prettier-eslint --write \"**/*.js\"",
"lint": "eslint src lib test example",
"build": "npm run lint && npm run clean && npm run bundle",
"preversion": "npm run test",
"prepare": "npm run build"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.0.11",
"ajv": "^6.5.3",
"angular": "^1.6.8",
"angular-mocks": "^1.6.4",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-vue": "^0.2.0",
"css-loader": "^0.28.11",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.2",
"husky": "^1.0.0",
"jest": "^20.0.4",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "^1.4.0",
"prettier": "^1.14.3",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-js": "^3.0.11",
"url-loader": "^4.1.1",
"vue": "^3.0.11",
"vue-loader": "^16.2.0",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngVue/ngVue.git"
},
"bugs": {
"url": "https://github.com/ngVue/ngVue/issues"
},
"homepage": "https://github.com/ngVue/ngVue#readme",
"license": "MIT",
"jest": {
"rootDir": "",
"roots": [
"src"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"testRegex": "/__tests__/.*\\.test\\.js$"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
}
}