-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.46 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
{
"name": "rankr-vue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watchify": "mkdirp debug && watchify -vd -p tsify -p browserify-hmr -e src/index.ts -o debug/index.js",
"serve": "http-server -c 1 -a localhost -o",
"start": "npm-run-all --parallel watchify serve",
"mkdist": "mkdirp dist && rplcr index.html -f debug/ -o index.html && browserify -g envify -p tsify -p [ vueify/plugins/extract-css -o dist/index.css ] -e src/index.ts | uglifyjs -c warnings=false -m > dist/index.js",
"dist": "npm-run-all --silent lint 'test -- --no-cache' mkdist",
"test": "jest",
"lint": "tslint src/**/*.ts test/**/*.ts"
},
"author": "",
"license": "ISC",
"jest": {
"transform": {
".*\\.(ts|vue)$": "<rootDir>/node_modules/vue-typescript-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js",
"vue"
],
"testRegex": "/test/.*\\.(ts|js)$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/.*\\.(ts|js)$",
"/.*\\.vue$"
]
},
"devDependencies": {
"@types/jest": "^16.0.0",
"@types/node": "^7.0.31",
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-runtime": "^6.0.0",
"browserify": "^13.1.0",
"browserify-hmr": "^0.3.1",
"cross-env": "^3.1.2",
"envify": "^4.0.0",
"envlocalify": "^1.1.1",
"expose-loader": "^0.7.3",
"html2jade": "^0.8.5",
"http-server": "^0.9.0",
"jest-cli": "^18.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.0",
"pug": "^2.0.0-beta5",
"rplcr": "^0.2.2",
"tsify": "^3.0.0",
"tslint": "^4.2.0",
"tslint-config-locoslab": "^1.0.0",
"typescript": "^2.1.4",
"uglify-js": "^2.5.0",
"vue": "^2.1.8",
"vue-jest-utils": "^0.2.0",
"vue-typescript-component": "^0.6.1",
"vue-typescript-import-dts": "^2.0.0",
"vue-typescript-jest": "^0.3.0",
"vueify": "^9.4.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify"
]
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"@types/dotenv": "^4.0.0",
"@types/node": "^7.0.31",
"axios": "^0.16.1",
"babelify": "^7.3.0",
"dotenv": "^4.0.0",
"rss-parser": "^2.9.0",
"tslint-config-airbnb": "^5.1.2",
"vue-analytics": "^4.1.2",
"vue-chartjs": "^2.6.3",
"vue-resource": "^1.3.3",
"vue-router": "^2.5.3",
"xml2js": "^0.4.17"
}
}