-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.06 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
{
"name": "@j-kallunki/css-in-to-js",
"version": "1.0.6",
"description": "CSS to CSS-in-JS and Styled converter",
"main": "dist/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/polyfill --require @babel/register 'src/*.test.js'",
"test:withoutcover": "mocha --require @babel/polyfill --require @babel/register 'src/*.test.js'",
"test:watch": "yarn test --watch",
"test:lcov": "cross-env NODE_ENV=test nyc --reporter=lcov mocha 'src/*.test.js'",
"check-coverage": "cross-env NODE_ENV=test nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80",
"validate": "yarn test && yarn check-coverage",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore 'src/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/J-Kallunki/css-in-to-js.git"
},
"keywords": [
"css",
"cssinjs"
],
"files": [
"dist",
"README.md"
],
"author": "Joonas Kallunki <jkallunki@gmail.com> (https://jkallunki.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/J-Kallunki/css-in-to-js/issues"
},
"homepage": "https://github.com/J-Kallunki/css-in-to-js#readme",
"dependencies": {
"lodash": "4.17.15",
"postcss": "7.0.5"
},
"devDependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.6",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.6",
"@babel/register": "7.0.0",
"babel-plugin-inline-import": "3.0.0",
"babel-plugin-istanbul": "5.2.0",
"chai": "4.2.0",
"cross-env": "5.2.0",
"husky": "1.1.4",
"lint-staged": "9.2.3",
"mocha": "5.2.0",
"nyc": "14.1.1",
"prettier": "1.15.2",
"rimraf": "2.6.2"
},
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn validate"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
}
}