-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.37 KB
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
83
84
{
"name": "normalize.cssinjs",
"version": "1.1.1",
"description": "Normalize.css in CSS-in-JS format",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"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 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"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",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore 'src/*.test.js'",
"validate": "npm-run-all test check-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/J-Kallunki/normalize.cssinjs.git"
},
"keywords": [
"normalize",
"css",
"reset",
"cssinjs"
],
"files": [
"dist",
"README.md",
"index.d.ts"
],
"author": "Joonas Kallunki <jkallunki@gmail.com> (https://jkallunki.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/J-Kallunki/normalize.cssinjs/issues"
},
"homepage": "https://github.com/J-Kallunki/normalize.cssinjs#readme",
"dependencies": {
"@csstools/normalize.css": "10.1.0",
"@j-kallunki/css-in-to-js": "1.0.6"
},
"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",
"codecov.io": "0.1.6",
"cross-env": "5.2.0",
"husky": "1.1.4",
"lint-staged": "8.0.4",
"mocha": "5.2.0",
"mocha-loader": "2.0.0",
"npm-run-all": "^4.1.5",
"nyc": "14.1.1",
"prettier": "1.15.2",
"rimraf": "2.6.2",
"webpack": "4.41.5",
"webpack-cli": "3.1.2"
},
"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"
]
},
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
}
}