-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@presslabs/icons",
"version": "2.6.1",
"description": "Components, fonts, icons, and css files for creating and displaying icons.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"esnext": "lib/esnext/index.js",
"typings": "lib/esm/index.d.ts",
"types": "lib/cjs/index.d.ts",
"style": "lib/css/blueprint-icons.css",
"unpkg": "dist/icons.bundle.js",
"sideEffects": [
"*.css"
],
"scripts": {
"clean": "rm -rf dist/* && rm -rf lib/* && rm -rf src/generated/*",
"compile": "npm-run-all -s \"compile:pre\" -p \"compile:*\"",
"compile:pre": "node ./scripts/generate-icons-source",
"compile:esm": "tsc -p ./src",
"compile:cjs": "tsc -p ./src -m commonjs --outDir lib/cjs",
"compile:css": "sh ./scripts/sass-compile.sh ./src",
"compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
"dev": "run-p \"compile:esm -- --watch\" \"compile:css -- --watch\"",
"dist": "run-s \"dist:*\"",
"dist:bundle": "cross-env NODE_ENV=production webpack",
"dist:css": "css-dist lib/css/*.css",
"dist:variables": "node ./scripts/generate-css-variables /generated/_icon-variables.scss",
"dist:verify": "assert-package-layout",
"lint": "run-p lint:scss lint:ts",
"lint:scss": "sass-lint",
"lint:ts": "ts-lint",
"lint-fix": "ts-lint --fix",
"test": "run-s test:typeCheck test:iso",
"test:typeCheck": "tsc -p ./test",
"test:iso": "mocha test/isotest.js",
"verify": "npm-run-all compile -p dist test lint"
},
"dependencies": {
"classnames": "^2.2",
"cross-env": "^6.0.3",
"node-sass": "^4.13.0",
"node-sass-chokidar": "^1.4.0",
"tslib": "~1.9.0"
},
"devDependencies": {
"@blueprintjs/node-build-scripts": "^0.11.0",
"@blueprintjs/test-commons": "^0.10.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.3.0",
"cssnano": "^4.1.10",
"enzyme": "^3.10.0",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"sass-loader": "^8.0.0",
"typescript": "~3.5.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.10",
"webpack-notifier": "^1.8.0"
},
"repository": {
"type": "git",
"url": "[email protected]:presslabs/react-particles-icons.git"
},
"keywords": [
"palantir",
"blueprint",
"theme",
"react",
"icon"
],
"author": "Palantir Technologies",
"contributors": [
"Mihai Grescenko <[email protected]> (https://presslabs.com)"
],
"license": "Apache-2.0"
}