This repository was archived by the owner on Nov 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.38 KB
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
{
"name": "css-to-ts",
"version": "1.0.1",
"description": "css-to-ts takes a css file and outputs a TypeScript file with an exported string containing a content of your css file.",
"main": "dist/index.js",
"types": "@types/index.d.ts",
"scripts": {
"build": "tsc -p .",
"tslint": "tslint --project . --config ./tslint.json",
"watch": "tsc -w",
"test": "tsc -p . --noEmit && npm run tslint",
"release": "npm run build && npm run tslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimplrJS/css-to-ts.git"
},
"keywords": [
"SimplrJS",
"css",
"Cascading",
"Style",
"Sheets",
"ts",
"Typescript",
"css-to-ts"
],
"files": [
"dist",
"@types",
"*.md",
"LICENSE"
],
"author": "SimplrJS <simplr@quatrodev.com> (https://github.com/SimplrJS)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimplrJS/css-to-ts/issues"
},
"homepage": "https://github.com/SimplrJS/css-to-ts",
"devDependencies": {
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"dependencies": {
"@types/chokidar": "^1.7.3",
"@types/fs-extra": "^4.0.3",
"@types/globby": "^6.1.0",
"@types/yargs": "^6.6.0",
"chokidar": "^1.6.1",
"fs-extra": "^4.0.2",
"globby": "^6.1.0",
"yargs": "^7.1.0"
},
"engine": "node >= 7.5.0",
"bin": {
"css-to-ts": "./dist/cli.js"
}
}