-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "ava-postcss-tester",
"version": "1.1.1",
"description": "Simply test your PostCSS plugin with AVA.",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dimitrinicolas/ava-postcss-tester.git"
},
"author": {
"name": "Dimitri NICOLAS",
"email": "dimitri@fivecorp.fr"
},
"keywords": [
"postcss",
"plugin",
"ava",
"test",
"tester"
],
"bugs": {
"url": "https://github.com/dimitrinicolas/ava-postcss-tester/issues"
},
"homepage": "https://github.com/dimitrinicolas/ava-postcss-tester",
"scripts": {
"publish": "clean-publish --files .nyc_output coverage fixtures",
"lint": "eslint **/*.js",
"test": "nyc --reporter=lcov --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"watch": "nodemon -e js -x \"npm run test\""
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.2.6",
"clean-publish": "^1.0.9",
"coveralls": "^3.0.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"postcss-import": "^12.0.0",
"postcss-import-ext-glob": "^1.1.0"
},
"dependencies": {
"one-liner": "^1.3.0"
}
}