This repository was archived by the owner on Feb 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·104 lines (104 loc) · 3.51 KB
/
package.json
File metadata and controls
executable file
·104 lines (104 loc) · 3.51 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nucleus-ui-kit",
"version": "1.0.2",
"description": "A delightful collection of UI components we use at Temper written with Vue, inspired by Material Design.",
"main": "dist/nucleus-ui-kit.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.js --open --inline --hot",
"build": "webpack --config build/webpack.dist.js",
"build:docs": "webpack --config build/webpack.docs.js",
"build:lib": "webpack --config build/webpack.lib.js",
"build:all": "npm run build && npm run build:lib",
"clean": "rimraf ./dist ./lib ./docs/docs.bundle.css ./docs/docs.bundle.js",
"lint": "eslint --format=node_modules/eslint-formatter-pretty --ext .js,.vue,.html ./",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TemperWorks/Nucleus.git"
},
"keywords": [
"vue",
"vuejs",
"material design",
"components",
"ui"
],
"files": [
"dist",
"lib",
"src",
"CHANGELOG.md",
"LICENCE",
"README.md",
"yarn.lock"
],
"author": {
"name": "Temper Works"
},
"contributors": [
{
"name": "Yordi de Kleijn",
"email": "yordi@temper.works",
"url": "https://github.com/YordiLorenzo"
},
{
"name": "Niels de Rijk",
"email": "n.derijk@temper.works",
"url": "https://github.com/NielsdeRijk"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TemperWorks/Nucleus/issues"
},
"homepage": "https://github.com/TemperWorks/Nucleus",
"dependencies": {
"autosize": "^3.0.20",
"deep-assign": "^2.0.0",
"fuzzysearch": "^1.0.3",
"lodash.debounce": "^4.0.8",
"tether-drop": "^1.4.2",
"tether-tooltip": "^1.2.0"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.12.0",
"eslint-config-vue": "^2.0.2",
"eslint-config-xo": "^0.17.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-no-use-extend-native": "^0.3.12",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-unicorn": "^1.0.0",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"node-sass": "^3.13.0",
"prismjs": "^1.5.1",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"vue": "^2.4.2",
"vue-loader": "^10.0.2",
"vue-router": "^2.1.0",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.1.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1"
}
}