Show More
Commit Description:
anonymize submission show
Commit Description:
anonymize submission show
References:
File last commit:
Show/Diff file:
Action:
node_modules/unicode-properties/package.json
| 61 lines
| 1.7 KiB
| application/json
| JsonLexer
|
r789 | { | |||
"name": "unicode-properties", | ||||
"version": "1.3.1", | ||||
"description": "Provides fast access to unicode character properties", | ||||
"main": "./unicode-properties.cjs.js", | ||||
"module": "./unicode-properties.es.js", | ||||
"browser": { | ||||
"./unicode-properties.es.js": "./unicode-properties.browser.es.js", | ||||
"./unicode-properties.cjs.js": "./unicode-properties.browser.cjs.js" | ||||
}, | ||||
"directories": { | ||||
"test": "test" | ||||
}, | ||||
"dependencies": { | ||||
"base64-js": "^1.3.0", | ||||
"unicode-trie": "^2.0.0" | ||||
}, | ||||
"devDependencies": { | ||||
"@babel/core": "^7.0.0", | ||||
"@babel/preset-env": "^7.0.0", | ||||
"@babel/register": "^7.0.0", | ||||
"codepoints": "^1.3.0", | ||||
"mocha": "^5.2.0", | ||||
"rollup": "^1.5.0", | ||||
"rollup-plugin-babel": "^4.0.1", | ||||
"rollup-plugin-json": "^4.0.0" | ||||
}, | ||||
"scripts": { | ||||
"test": "npm run build && mocha", | ||||
"build": "node ./generate.js && rollup -c", | ||||
"prepublish": "npm run build" | ||||
}, | ||||
"repository": { | ||||
"type": "git", | ||||
"url": "git://github.com/devongovett/unicode-properties.git" | ||||
}, | ||||
"keywords": [ | ||||
"unicode", | ||||
"metadata", | ||||
"character", | ||||
"codepoint" | ||||
], | ||||
"files": [ | ||||
"data.json", | ||||
"data.trie", | ||||
"unicode-properties.es.js", | ||||
"unicode-properties.es.js.map", | ||||
"unicode-properties.cjs.js", | ||||
"unicode-properties.cjs.js.map", | ||||
"unicode-properties.browser.es.js", | ||||
"unicode-properties.browser.es.js.map", | ||||
"unicode-properties.browser.cjs.js", | ||||
"unicode-properties.browser.cjs.js.map" | ||||
], | ||||
"author": "Devon Govett <devongovett@gmail.com>", | ||||
"license": "MIT", | ||||
"bugs": { | ||||
"url": "https://github.com/devongovett/unicode-properties/issues" | ||||
}, | ||||
"homepage": "https://github.com/devongovett/unicode-properties" | ||||
} | ||||