forked from SAP-archive/fundamental-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.63 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
{
"name": "fundamental-vue",
"version": "0.0.9-beta",
"description": "Fundamental Vue is a light-weight Vue.js component library for SAP Fiori Fundamentals.",
"keywords": [
"vue",
"sap",
"fiori",
"typescript",
"javascript"
],
"bugs": {
"url": "https://github.com/SAP/fundamental-vue/issues"
},
"author": "SAP SE",
"repository": {
"type": "git",
"url": "[email protected]:SAP/fundamental-vue.git"
},
"private": false,
"homepage": "https://github.com/SAP/fundamental-vue",
"scripts": {
"typecheck": "tsc --noEmit",
"serve:docs": "echo '\n\n⚠️⚠️⚠️ WARNING ⚠️⚠️⚠️\n\nThe serve:docs script will soon be removed.\nUse npm run serve instead.\nI will now go to sleep for 30 seconds to make you stop using this script.\n\n\n………zzzZZZZzzz………' && sleep 30 && echo 'Ok, lets go…' && npm run serve",
"serve": "vue-cli-service serve src/docs/main.ts",
"build": "vue-cli-service build",
"lint:vue": "vue-cli-service lint",
"test": "vue-cli-service test:unit 'src/**/__tests__/*.test.{tsx,ts,js,vue}'",
"test:watch": "npm test -- --watch",
"lint": "npx tslint --project tsconfig.json --config tslint.json",
"lint:fix": "npm run lint -- --fix",
"deploy": "node ./node_modules/vue-gh-pages/index.js"
},
"license": "Apache-2.0",
"main": "dist/FundamentalVue.umd.js",
"dependencies": {
"fiori-fundamentals": "^1.4.1",
"vue": "^2.5.21",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@types/chai": "^4.1.7",
"@types/highlight.js": "^9.12.3",
"@types/mocha": "^5.2.5",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-typescript": "^3.3.0",
"@vue/cli-plugin-unit-mocha": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "7.0.0-bridge.0",
"chai": "^4.2.0",
"highlight.js": "^9.13.1",
"html-loader": "^1.0.0-alpha.0",
"markdown-loader": "^5.0.0",
"node-sass": "^4.11.0",
"raw-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"vue-gh-pages": "^1.19.0",
"vue-template-compiler": "^2.5.21"
}
}