-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "themename",
"version": "1.0.0",
"scripts": {
"styles": "sass --load-path=templates scss/styles.scss dist/styles.css",
"kalastatic": "kalastatic",
"build": "npm run -s styles; npm run -s kalastatic;",
"test": "npm run -s build"
},
"dependencies": {
"sass": "^1.53.0"
},
"devDependencies": {
"kalastatic": "kalamuna/kalastatic"
},
"kalastatic": {
"source": "styleguide",
"destination": "dist/styleguide",
"namespaces": {
"styleguide": "styleguide",
"scss": "scss",
"templates": "templates"
},
"libraries": {
"themename": {
"stylesheets": {
"dist/styles.css": "styles.css"
}
},
"details-tabs" : {
"stylesheets": {
"libraries/details-tabs.scss": "libraries/details-tabs.css"
},
"scripts": {
"libraries/details-tabs.js": "libraries/details-tabs.js"
}
},
"styleguide-sample" : {
"stylesheets": {
"styleguide/styleguide-sample.scss": "styleguide-sample.css"
}
}
}
}
}