1 | {
|
---|
2 | "name": "nano-css",
|
---|
3 | "version": "5.6.2",
|
---|
4 | "description": "Smallest 5th gen CSS-in-JS library",
|
---|
5 | "main": "index.js",
|
---|
6 | "types": "index.d.ts",
|
---|
7 | "typings": "index.d.ts",
|
---|
8 | "repository": {
|
---|
9 | "type": "git",
|
---|
10 | "url": "https://github.com/streamich/nano-css.git"
|
---|
11 | },
|
---|
12 | "license": "Unlicense",
|
---|
13 | "scripts": {
|
---|
14 | "lint": "eslint ./index.js",
|
---|
15 | "lint:fix": "yarn lint --fix",
|
---|
16 | "start": "yarn storybook",
|
---|
17 | "clean": "rimraf dist && yarn test:visual:clean",
|
---|
18 | "test": "yarn lint && jest",
|
---|
19 | "test:coverage": "jest --coverage",
|
---|
20 | "test:watch": "jest --watch",
|
---|
21 | "test:visual": "npm run storybook",
|
---|
22 | "test:visual:build": "build-storybook",
|
---|
23 | "test:visual:clean": "rimraf storybook-static",
|
---|
24 | "demo": "webpack-dev-server --config demo/webpack.config.js",
|
---|
25 | "prettier": "prettier --write '**/*.ts'",
|
---|
26 | "precommit": "lint-staged",
|
---|
27 | "prepush": "yarn test",
|
---|
28 | "storybook": "start-storybook -p 6010"
|
---|
29 | },
|
---|
30 | "lint-staged": {
|
---|
31 | "**/*.ts": [
|
---|
32 | "prettier --write",
|
---|
33 | "git add"
|
---|
34 | ]
|
---|
35 | },
|
---|
36 | "peerDependencies": {
|
---|
37 | "react": "*",
|
---|
38 | "react-dom": "*"
|
---|
39 | },
|
---|
40 | "dependencies": {
|
---|
41 | "@jridgewell/sourcemap-codec": "^1.4.15",
|
---|
42 | "css-tree": "^1.1.2",
|
---|
43 | "csstype": "^3.1.2",
|
---|
44 | "fastest-stable-stringify": "^2.0.2",
|
---|
45 | "inline-style-prefixer": "^7.0.1",
|
---|
46 | "rtl-css-js": "^1.16.1",
|
---|
47 | "stacktrace-js": "^2.0.2",
|
---|
48 | "stylis": "^4.3.0"
|
---|
49 | },
|
---|
50 | "devDependencies": {
|
---|
51 | "@storybook/addon-actions": "6.5.16",
|
---|
52 | "@storybook/addon-links": "6.5.16",
|
---|
53 | "@storybook/react": "6.5.16",
|
---|
54 | "@types/jest": "26.0.24",
|
---|
55 | "@types/node": "14.18.63",
|
---|
56 | "@types/prop-types": "15.7.12",
|
---|
57 | "@types/react": "17.0.80",
|
---|
58 | "eslint": "7.32.0",
|
---|
59 | "git-cz": "4.9.0",
|
---|
60 | "husky": "4.3.8",
|
---|
61 | "iconista": "2.16.1",
|
---|
62 | "jest": "26.6.3",
|
---|
63 | "lerna": "3.22.1",
|
---|
64 | "libreact": "2.13.3",
|
---|
65 | "lint-staged": "10.5.4",
|
---|
66 | "prettier": "2.8.8",
|
---|
67 | "prop-types": "15.8.1",
|
---|
68 | "react": "17.0.2",
|
---|
69 | "react-dom": "17.0.2",
|
---|
70 | "react-test-renderer": "17.0.2",
|
---|
71 | "rimraf": "3.0.2",
|
---|
72 | "source-map-support": "0.5.19",
|
---|
73 | "ts-loader": "8.4.0",
|
---|
74 | "tslib": "2.6.3",
|
---|
75 | "typescript": "4.9.5",
|
---|
76 | "webpack": "5.92.1",
|
---|
77 | "webpack-bundle-analyzer": "4.10.2",
|
---|
78 | "webpack-dev-server": "3.11.3",
|
---|
79 | "yarn": "1.22.22"
|
---|
80 | },
|
---|
81 | "config": {
|
---|
82 | "commitizen": {
|
---|
83 | "path": "git-cz"
|
---|
84 | }
|
---|
85 | },
|
---|
86 | "jest": {
|
---|
87 | "transformIgnorePatterns": [],
|
---|
88 | "testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?)$",
|
---|
89 | "setupFiles": [
|
---|
90 | "./addon/__tests__/setup.js"
|
---|
91 | ],
|
---|
92 | "moduleFileExtensions": [
|
---|
93 | "js",
|
---|
94 | "jsx",
|
---|
95 | "json"
|
---|
96 | ]
|
---|
97 | },
|
---|
98 | "prettier": {
|
---|
99 | "printWidth": 120,
|
---|
100 | "tabWidth": 4,
|
---|
101 | "useTabs": false,
|
---|
102 | "semi": true,
|
---|
103 | "singleQuote": true,
|
---|
104 | "trailingComma": "none",
|
---|
105 | "bracketSpacing": false,
|
---|
106 | "jsxBracketSameLine": false
|
---|
107 | },
|
---|
108 | "keywords": [
|
---|
109 | "css",
|
---|
110 | "style",
|
---|
111 | "styles",
|
---|
112 | "pico",
|
---|
113 | "nano",
|
---|
114 | "lite",
|
---|
115 | "react",
|
---|
116 | "js",
|
---|
117 | "in-js",
|
---|
118 | "css-in-js",
|
---|
119 | "styled",
|
---|
120 | "decorator",
|
---|
121 | "component",
|
---|
122 | "styled-components",
|
---|
123 | "jsxstyle",
|
---|
124 | "rule",
|
---|
125 | "stylesheet"
|
---|
126 | ]
|
---|
127 | }
|
---|