-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "silc-accordion",
"version": "0.10.2",
"description": "Accordion component for the silc framework",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --outDir ./dist ./src/js/index.ts",
"serve": "webpack-dev-server --open",
"test": "NODE_ENV=production webpack -p && mocha --exit"
},
"author": {
"name": "Nick Rigby",
"email": "[email protected]",
"url": "https://nickrigby.uk"
},
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.6.1",
"css-loader": "^3.2.0",
"mocha": "^5.0.0",
"node-http-server": "^6.2.1",
"node-sass": "^4.9.1",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.0",
"sass-loader": "^6.0.7",
"silc-core": "^0.6.0",
"ts-loader": "^6.1.0",
"typescript": "^2.2.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"zombie": "^6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nickrigby/silc-accordion"
},
"dependencies": {
"element-closest": "^2.0.2",
"lodash.debounce": "^4.0.8",
"mini-css-extract-plugin": "^0.8.0"
},
"browserslist": [
"last 1 versions",
"> 5%"
]
}