-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.91 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
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
{
"name": "@theholocron/ahsoka",
"homepage": "https://the-holocron.github.io/ahsoka",
"description": "This provides a set of single-purpose, functional utilities for writing (S)CSS animations within the Galaxy.",
"author": "Newton Koumantzelis",
"version": "1.1.0",
"main": "src/_index.scss",
"files": [
"dist",
"src"
],
"repository": "https://github.com/the-holocron/ahsoka.git",
"bugs": "https://github.com/the-holocron/ahsoka/issues",
"releases": "https://github.com/the-holocron/ahsoka/releases",
"wiki": "https://github.com/the-holocron/ahsoka/wiki",
"license": "GPL-3.0",
"alex": {
"allow": [
"color",
"colors",
"dead",
"disabled",
"invalid"
]
},
"browserslist": [
"extends @theholocron/browserslist-config"
],
"commitlint": {
"extends": [
"@theholocron"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged --config @theholocron/lint-staged-config"
}
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@theholocron/semantic-release-config",
"branch": "master"
},
"stylelint": {
"extends": "@theholocron/stylelint-config",
"rules": {
"plugin/stylelint-selector-no-empty": null
}
},
"scripts": {
"commit": "commit",
"docs": "sassdoc src --dest docs",
"lint": "stylelint src/**/*.scss",
"dist": "npm run sass",
"postdist": "postcss dist/*.css --config ./node_modules/@theholocron/postcss-config --replace",
"readme": "for file in src/**/*.scss; do sassdoc2md $file >> ${file%/*}/README.md; done",
"release": "semantic-release",
"sass": "sass src/animate.scss:dist/ahsoka.css src/bounce/bounce.scss:dist/ahsoka.bounce.css src/fade/fade.scss:dist/ahsoka.fade.css src/slide/slide.scss:dist/ahsoka.slide.css",
"postsass": "sass --style=compressed src/animate.scss:dist/ahsoka.min.css src/bounce/bounce.scss:dist/ahsoka.bounce.min.css src/fade/fade.scss:dist/ahsoka.fade.min.css src/slide/slide.scss:dist/ahsoka.slide.min.css",
"toc": "markdown-toc -i --bullets '*' --maxdepth 2 src/**/README.md",
"test:css": "mocha",
"test:docs": "alex .",
"test": "npm run test:docs && npm run test:css",
"test:integration": "sass --no-source-map test/integration.test.scss test/integration.test.css"
},
"dependencies": {
"@theholocron/config": "^0.1.0"
},
"peerDependencies": {
"sass": "^1.26.3"
},
"devDependencies": {
"@hidoo/sassdoc-to-markdown": "^0.4.1",
"@theholocron/browserslist-config": "latest",
"@theholocron/commitlint-config": "latest",
"@theholocron/lint-staged-config": "latest",
"@theholocron/postcss-config": "^0.2.5",
"@theholocron/semantic-release-config": "latest",
"@theholocron/stylelint-config": "latest",
"alex": "^7.1.0",
"mocha": "^7.0.0",
"sass": "^1.26.3",
"sass-true": "^5.0.0",
"sassdoc": "^2.7.1"
}
}