-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "tiny-sass-compiler",
"version": "0.12.2",
"description": "simple scss compiler",
"main": "index.js",
"module": "dist/tiny-sass-compiler.esm-browser.prod.js",
"types": "dist/tiny-sass-compiler.d.ts",
"unpkg": "dist/tinySassCompiler.global.js",
"jsdelivr": "dist/tinySassCompiler.global.js",
"files": [
"dist",
"bin",
"index.js"
],
"bin": {
"tiny-sass": "bin/tiny-sass"
},
"scripts": {
"test-source": "node -v && node -r ts-node/register scripts/test-source.ts",
"test": "node scripts/test-production.js",
"jest": "jest",
"build": "node scripts/build.js",
"release": "sh scripts/release.sh",
"sass-test": "sass ./test/:./test-sass-dist/"
},
"engines": {
"node": ">=10.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wizardpisces/tiny-sass-compiler.git"
},
"keywords": [
"scss",
"css",
"compiler",
"ast"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wizardpisces/tiny-sass-compiler/issues"
},
"homepage": "https://github.com/wizardpisces/tiny-sass-compiler#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.9.11",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^26.0.0",
"brotli": "^1.3.2",
"jest": "^29.6.1",
"rollup": "^2.26.11",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"sass": "^1.26.10",
"ts-jest": "^26.1.0",
"ts-node": "^9.0.0",
"tslib": "^2.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"mkdirp": "^1.0.4",
"source-map": "^0.6.1"
}
}