Skip to content

Commit 422f05b

Browse files
committed
feat: initial commit
0 parents  commit 422f05b

1 file changed

Lines changed: 134 additions & 0 deletions

File tree

package.json

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
{
2+
"name": "pico-style",
3+
"version": "0.1.0",
4+
"description": "Smallest 4th gen CSS-in-JS library",
5+
"main": "lib/index.js",
6+
"unpkg": "dist/pico-style.umd.min.js",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/streamich/pico-style.git"
10+
},
11+
"scripts": {
12+
"eslint": "eslint src",
13+
"start": "npm run storybook",
14+
"clean": "rimraf modules lib dist && npm run test:visual:clean",
15+
"build": "npm run clean && npm run build:lib && npm run build:cjs && npm run build:umd",
16+
"build:modules": "gulp build-modules --gulpfile build/gulpfile.js",
17+
"build:lib": "gulp build-ts --gulpfile build/gulpfile.js",
18+
"build:cjs": "webpack -p --config build/webpack.config.cjs.js",
19+
"build:umd": "webpack -p --config build/webpack.config.umd.js",
20+
"test": "npm run eslint && npm run test:server && jest",
21+
"test:coverage": "jest --coverage",
22+
"test:watch": "jest --watch",
23+
"test:server": "NODE_ENV=production mocha -r ts-node/register src/**/*.test-server.ts*",
24+
"test:visual": "npm run storybook",
25+
"test:visual:build": "build-storybook",
26+
"test:visual:clean": "rimraf storybook-static",
27+
"demo": "webpack-dev-server --config demo/webpack.config.js",
28+
"prettier": "prettier --write '**/*.ts'",
29+
"precommit": "lint-staged",
30+
"storybook": "start-storybook -p 6010",
31+
"semantic-release": "semantic-release"
32+
},
33+
"lint-staged": {
34+
"**/*.ts": [
35+
"prettier --write",
36+
"git add"
37+
]
38+
},
39+
"peerDependencies": {
40+
"react": "*",
41+
"react-dom": "*"
42+
},
43+
"dependencies": {
44+
"fastest-stable-stringify": "^1.0.1"
45+
},
46+
"devDependencies": {
47+
"@types/react": "16.0.40",
48+
"@types/enzyme": "2.8.12",
49+
"@types/enzyme-to-json": "1.5.1",
50+
"@types/jest": "22.2.0",
51+
"@types/node": "8.9.4",
52+
"@types/prop-types": "15.5.2",
53+
"enzyme": "3.3.0",
54+
"enzyme-to-json": "3.3.1",
55+
"enzyme-adapter-react-16": "1.1.1",
56+
"gulp": "3.9.1",
57+
"husky": "0.14.3",
58+
"jest": "21.2.1",
59+
"jest-tap-reporter": "1.9.0",
60+
"lerna": "2.9.0",
61+
"lint-staged": "4.3.0",
62+
"prettier": "1.11.1",
63+
"prop-types": "15.6.1",
64+
"react": "16.2.0",
65+
"react-dom": "16.2.0",
66+
"react-test-renderer": "15.6.2",
67+
"rimraf": "2.6.2",
68+
"source-map-support": "0.5.3",
69+
"webpack-dev-server": "2.11.2",
70+
"webpack": "^3.10.0",
71+
"yarn": "1.5.1",
72+
"chai": "4.1.2",
73+
"@storybook/react": "3.3.15",
74+
"@storybook/addon-actions": "3.3.15",
75+
"@storybook/addon-links": "3.3.15",
76+
"mol-conventional-changelog": "1.2.0",
77+
"semantic-release": "12.4.1",
78+
"gitbook-cli": "2.3.2",
79+
"libreact": "0.16.3",
80+
"mocha": "5.0.4",
81+
"chai": "4.1.2",
82+
"webpack-bundle-analyzer": "^2.9.0",
83+
"eslint": "^4.9.0"
84+
},
85+
"config": {
86+
"commitizen": {
87+
"path": "./node_modules/mol-conventional-changelog"
88+
}
89+
},
90+
"jest": {
91+
"transformIgnorePatterns": [],
92+
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?)$",
93+
"setupFiles": [
94+
"./src/__tests__/setup.js"
95+
],
96+
"moduleFileExtensions": [
97+
"js",
98+
"jsx",
99+
"json"
100+
],
101+
"reporters": [
102+
"jest-tap-reporter"
103+
]
104+
},
105+
"prettier": {
106+
"printWidth": 120,
107+
"tabWidth": 4,
108+
"useTabs": false,
109+
"semi": true,
110+
"singleQuote": true,
111+
"trailingComma": "es5",
112+
"bracketSpacing": false,
113+
"jsxBracketSameLine": false
114+
},
115+
"keywords": [
116+
"css",
117+
"style",
118+
"styles",
119+
"pico",
120+
"nano",
121+
"lite",
122+
"react",
123+
"js",
124+
"in-js",
125+
"css-in-js",
126+
"styled",
127+
"decorator",
128+
"component",
129+
"styled-components",
130+
"jsxstyle",
131+
"rule",
132+
"stylesheet"
133+
]
134+
}

0 commit comments

Comments
 (0)