-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.08 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
{
"author": "Kenichi ODO <kenichi.odo@link-off.com>",
"description": "Salesforce's Lightning Design System wrapped in Vue.js.",
"devDependencies": {
"@salesforce-ux/design-system": "^2.5.2",
"@storybook/addon-actions": "^3.4.3",
"@storybook/addon-knobs": "^3.4.3",
"@storybook/vue": "^4.0.0-alpha.4",
"@types/storybook__addon-actions": "^3.0.3",
"@types/storybook__vue": "^3.3.0",
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"innersvg-polyfill": "^0.0.2",
"poststylus": "^1.0.0",
"pug": "^2.0.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"storybook-addon-vue-info": "^0.2.0",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-inline-loader": "^0.8.0",
"ts-loader": "^4.2.0",
"typescript": "^2.8.3",
"url-loader": "^1.0.1",
"vue": "^2.5.16",
"vue-loader": "^14.2.2",
"vue-property-decorator": "^6.0.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.6.0",
"webpack-build-notifier": "^0.1.25",
"webpack-cli": "^2.1.2",
"webpack-merge": "^4.1.2"
},
"files": [
"lib",
"LICENSE",
"package.json",
"README.md"
],
"keywords": [
"lds",
"lightning design system",
"lightning",
"salesforce",
"slds",
"vue.js",
"vue"
],
"license": "MIT",
"main": "lib/index.js",
"name": "vue-lds",
"repository": {
"type": "git",
"url": "https://github.com/linkoff/vue-lds.git"
},
"scripts": {
"_clean": "rm -dfr ./lib && rm -dfr ./node_modules && rm -f ./yarn.lock && yarn",
"_update": "rm -dfr ./lib && rm -dfr ./node_modules && rm -f ./yarn.lock && ncu -a && yarn",
"build:lib": "webpack --config ./src/lib/webpack.config.js --progress --hide-modules",
"build:storybook": "build-storybook -o ./docs",
"production": "rm -dfr ./lib && rm -dfr ./docs && yarn build:lib && yarn build:storybook",
"storybook": "start-storybook -p 8080"
},
"version": "1.0.0-alpha.16"
}