-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "zynckit",
"version": "0.0.1",
"description": "Shared (S)CSS styles for Zync applications",
"main": "src/index.scss",
"scripts": {
"build": "node-sass src/index.scss dist/zynckit.css",
"watch": "npm run build && concurrently 'npm:watch:scss' 'npm:watch:browser'",
"watch:scss": "node-sass -w -r src/index.scss dist/zynckit.css",
"lint": "stylelint src/*.scss",
"lint:fix": "stylelint src/*.scss --fix",
"watch:browser": "browser-sync 'playground' 'dist' -w",
"create:component": "node ./bin/createComponent.js",
"create:util": "node ./bin/createUtil.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zyncco/zynckit.git"
},
"keywords": [
"zync",
"css",
"scss",
"style",
"design",
"kit"
],
"author": "Zync <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Zyncco/zynckit/issues"
},
"homepage": "https://github.com/Zyncco/zynckit#readme",
"devDependencies": {
"browser-sync": "^2.26.3",
"concurrently": "^4.0.1",
"node-sass": "^4.9.4",
"stylelint": "^9.6.0",
"stylelint-config-rational-order": "^0.0.2",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.2"
}
}