-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "str.scss",
"version": "1.2.0",
"description": "str.scss - set of functions that helps to manipulate strings.",
"main": "_str.scss",
"scripts": {
"test": "sass ./test/test.scss ./test/test.css",
"docs": "node scripts/docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solovets/str.scss.git"
},
"keywords": [
"scss",
"string",
"chars",
"char-at",
"split",
"join",
"to-swapcase",
"replace",
"bulk-replace",
"include",
"count",
"first-index",
"last-index",
"capitalize",
"decapitalize",
"reverse",
"trim",
"ltrim",
"rtrim",
"clean",
"is-blank",
"starts-with",
"ends-with",
"repeat"
],
"author": "Denis Solovets",
"license": "MIT",
"bugs": {
"url": "https://github.com/solovets/str.scss/issues"
},
"homepage": "https://github.com/solovets/str.scss#readme",
"devDependencies": {
"chalk": "^4.1.0",
"concat-files": "^0.1.1",
"sassdoc": "^2.7.3"
},
"dependencies": {}
}