-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
136 lines (136 loc) Β· 3.5 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@datorama/themify",
"version": "0.0.0-development",
"description": "CSS themes made easy. A robust, opinionated solution to manage themes in your web application",
"main": "index.js",
"gh-pages-deploy": {
"staticpath": "playground",
"commit": "pages"
},
"contributors": [
{
"name": "Netanel Basal",
"url": "https://netbasal.com"
},
{
"name": "Amit Bar Hanin"
}
],
"bugs": {
"url": "https://github.com/datorama/themify/issues"
},
"license": "Apache License 2.0",
"homepage": "https://github.com/datorama/themify#readme",
"scripts": {
"setup": "semantic-release-cli setup",
"github-pages": "gh-pages-deploy",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"play": "gulp --gulpfile ./playground/gulpfile.js",
"commit": "git-cz",
"build": "npm run clean:dist && tsc && npm run copy:dist",
"copy:dist": "cp -R src/sass/. package.json README.md dist",
"clean:dist": "rimraf dist",
"format": "prettier --write --config .prettierrc src/*.ts src/**/*.ts playground/*.js",
"test": "jest",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*spec\\.(ts|js)$"
},
"lint-staged": {
"src/**/*.ts": [
"npm run format",
"git add"
]
},
"keywords": [
"CSS",
"CSS themes",
"CSS variables",
"themes",
"css vars",
"sass themes"
],
"author": "Datorama",
"dependencies": {
"fs-extra": "^5.0.0"
},
"config": {
"github_deploy_source": "playground",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-angular": "^6.1.3",
"@datorama/postcss-node-sass": "^1.0.0",
"@semantic-release/changelog": "^2.0.1",
"@semantic-release/git": "^4.0.1",
"@semantic-release/npm": "^3.2.2",
"@types/jest": "^22.2.0",
"@types/node": "^9.4.6",
"all-contributors-cli": "^4.11.1",
"browser-sync": "^2.26.7",
"clean-css": "^4.1.11",
"commitizen": "^3.1.1",
"cross-env": "^5.1.4",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"gh-pages-deploy": "^0.5.1",
"glob": "^7.1.2",
"gulp": "^4.0.2",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"node-sass": "^4.12.0",
"postcss": "^6.0.19",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.13.19",
"semantic-release-cli": "^5.1.1",
"tmp": "0.0.33",
"travis-deploy-once": "^5.0.0",
"ts-jest": "^24.0.2",
"typescript": "^2.7.2"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
{
"path": "@semantic-release/npm",
"pkgRoot": "dist"
},
"@semantic-release/git"
],
"publish": [
{
"path": "@semantic-release/npm",
"pkgRoot": "dist"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/datorama/themify.git"
}
}