UNPKG

1.28 kBJSONView Raw
1{
2 "name": "css-selector-tokenizer",
3 "version": "0.8.0",
4 "description": "Parses and stringifies CSS selectors",
5 "main": "lib/index.js",
6 "scripts": {
7 "lint": "eslint .",
8 "pretest": "npm run lint",
9 "test": "mocha",
10 "cover": "nyc npm test",
11 "build-regexpu": "node scripts/build-regexpu.js",
12 "report:coveralls": "nyc report --reporter=text-lcov | coveralls",
13 "report:codecov": "nyc report --reporter=text-lcov | codecov --pipe",
14 "publish-patch": "npm test && npm version patch && git push && git push --tags && npm publish"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/css-modules/css-selector-tokenizer.git"
19 },
20 "keywords": [
21 "css-modules",
22 "selectors"
23 ],
24 "files": [
25 "lib"
26 ],
27 "author": "Tobias Koppers @sokra",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/css-modules/css-selector-tokenizer/issues"
31 },
32 "homepage": "https://github.com/css-modules/css-selector-tokenizer",
33 "dependencies": {
34 "cssesc": "^3.0.0",
35 "fastparse": "^1.1.2"
36 },
37 "devDependencies": {
38 "codecov": "^3.6.5",
39 "coveralls": "^3.0.9",
40 "eslint": "^6.8.0",
41 "mocha": "^7.1.0",
42 "nyc": "^15.0.0",
43 "regexpu-core": "^4.6.0"
44 },
45 "directories": {
46 "test": "test"
47 }
48}