forked from bigcommerce/themes-lib-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 845 Bytes
/
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
{
"name": "bc-tabs",
"version": "1.0.4",
"private": true,
"description": "Pixel Unions Tabs UI Module",
"main": "./dist/tabs",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"css-loader": "^0.23.1",
"node-sass": "^3.4.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1",
"pre-commit": "^1.1.3"
},
"scripts": {
"demo": "webpack-dev-server --content-base demo/ --hot",
"build": "babel src/tabs.js -o dist/tabs.js && cp src/_tabs.scss dist/_tabs.scss",
"git-add": "git add ./dist"
},
"license": "MIT",
"dependencies": {
"jquery": "^3.4.1",
"just-debounce": "^1.0.0"
},
"pre-commit": [
"build",
"git-add"
]
}