-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
{
"name": "vuvu",
"version": "0.7.7",
"description": "",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "npx karma start",
"clean": "npx rimraf ./lib",
"build": "npm run build:tsc && npm run build:copy",
"build:tsc": "npx tsc --project tsconfig.build.json",
"build:copy": "npx copyfiles package.json lib",
"publish": "cd lib && npm publish",
"dist": "npm run build && npm run publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kedrzu/vuvu.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kedrzu/vuvu/issues"
},
"homepage": "https://github.com/kedrzu/vuvu#readme",
"dependencies": {
"axios": "^0.18.0",
"inversify": "^4.13.0",
"jsep": "^0.3.4",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.12",
"vue": "^2.5.17",
"vuex": "^3.0.1"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/node": "^10.11.3",
"copyfiles": "^2.1.0",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-html-detailed-reporter": "^1.1.21",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.13",
"karma-webpack": "^3.0.5",
"rimraf": "^2.6.2",
"ts-loader": "^5.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript-formatter": "^7.2.2",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.20.2"
}
}