-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"name": "@blueprintjs/node-build-scripts",
"version": "7.0.3",
"description": "Node.js build scripts for @blueprintjs packages",
"module": "./index.mjs",
"exports": {
"import": "./index.mjs"
},
"scripts": {
"test": "jest"
},
"bin": {
"assert-package-layout": "./assert-package-layout.mjs",
"css-dist": "./css-dist.sh",
"es-lint": "./es-lint.mjs",
"generate-css-variables": "./generate-css-variables.mjs",
"sass-compile": "./sass-compile.sh",
"sass-lint": "./sass-lint.mjs"
},
"dependencies": {
"autoprefixer": "^10.4.13",
"chokidar": "^3.5.3",
"cross-spawn": "^7.0.3",
"css-select": "^5.1.0",
"dom-serializer": "^2.0.0",
"eslint": "^8.36.0",
"eslint-formatter-codeframe": "^7.32.1",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"htmlparser2": "^8.0.1",
"mini-svg-data-uri": "^1.4.4",
"pkg-up": "^4.0.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-discard-comments": "^5.1.1",
"postcss-scss": "^4.0.6",
"postcss-simple-vars": "^7.0.1",
"prettier": "~2.8.3",
"sass": "^1.58.3",
"source-map-js": "^1.0.2",
"strip-css-comments": "^5.0.0",
"stylelint": "~14.16.0",
"stylelint-junit-formatter": "^0.2.2",
"svgo": "^1.3.2",
"ts-node": "^10.9.1",
"typescript": "~4.8.4",
"yargs": "^17.6.0"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/fs-extra": "~11.0.1",
"@types/pkg-up": "^3.1.0",
"@types/svgo": "~1.3.6",
"@types/yargs": "~17.0.22",
"jest": "^29.4.3",
"ts-jest": "^29.0.5"
},
"engines": {
"node": ">=19.3"
},
"repository": {
"type": "git",
"url": "[email protected]:palantir/blueprint.git",
"directory": "packages/node-build-scripts"
},
"author": "Palantir Technologies",
"license": "Apache-2.0"
}