-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "@gyugyu/sassunit",
"version": "0.2.0",
"description": "Unit testing framework for Dart Sass",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"sassunit": "bin/sassunit.js"
},
"scripts": {
"test": "jest",
"build": "npm run clean && npm run compile",
"clean": "rm -rf lib",
"compile": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gyugyu/sassunit.git"
},
"keywords": [
"sass",
"scss",
"test"
],
"author": "Yusuke Yagyu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gyugyu/sassunit/issues"
},
"homepage": "https://github.com/gyugyu/sassunit#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/commander": "^2.12.2",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.20",
"@types/sass": "^1.16.0",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"sass": "^1.32.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"chokidar": "^3.5.1",
"commander": "^7.0.0",
"glob": "^7.1.6"
},
"peerDependencies": {
"sass": "^1.26.5"
}
}