-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "stylesheet-writer",
"version": "1.0.1",
"description": "Write properties to style file using selector",
"keywords": [
"style",
"stylesheet",
"css",
"scss",
"less"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "npm run build",
"dev": "tsc -w",
"start": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriengcql/stylesheet-writer.git"
},
"bugs": {
"url": "https://github.com/adriengcql/stylesheet-writer/issues"
},
"homepage": "https://github.com/adriengcql/stylesheet-writer#readme",
"author": "Adrien Gicquel",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.0.4",
"tsc": "^1.20150623.0",
"typescript": "^3.5.1"
},
"dependencies": {
"fs-extra": "^8.0.1"
}
}