forked from ngVue/ngVue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.3 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
{
"name": "ngVue",
"author": "Doray Hong <[email protected]>",
"version": "0.4.3",
"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",
"lint": "eslint src lib test example",
"build": "npm run lint && npm run clean && npm run bundle",
"preversion": "npm run test",
"prepublish": "npm run build"
},
"dependencies": {
"angular": "^1.5.11",
"vue": "^2.3.3"
},
"devDependencies": {
"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.3",
"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.1",
"jest": "^20.0.4",
"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",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"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"
}
}