source: node_modules/css.escape/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 956 bytes
Line 
1{
2 "name": "css.escape",
3 "version": "1.5.1",
4 "description": "A robust polyfill for the `CSS.escape` utility method as defined in CSSOM.",
5 "homepage": "https://mths.be/cssescape",
6 "main": "css.escape.js",
7 "keywords": [
8 "string",
9 "unicode",
10 "identifier",
11 "css",
12 "cssom",
13 "polyfill"
14 ],
15 "license": "MIT",
16 "author": {
17 "name": "Mathias Bynens",
18 "url": "https://mathiasbynens.be/"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/mathiasbynens/CSS.escape.git"
23 },
24 "bugs": "https://github.com/mathiasbynens/CSS.escape/issues",
25 "files": [
26 "LICENSE-MIT.txt",
27 "css.escape.js"
28 ],
29 "scripts": {
30 "test": "node tests/tests.js",
31 "cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js",
32 "coveralls": "istanbul cover --verbose --dir coverage tests/tests.js && coveralls < coverage/lcov.info; rm -rf coverage/lcov*"
33 },
34 "devDependencies": {
35 "coveralls": "^2.11.4",
36 "istanbul": "^0.4.1"
37 }
38}
Note: See TracBrowser for help on using the repository browser.