orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
62 lines (61 loc) • 1.44 kB
JSON
{
"name": "symbol-tree",
"version": "3.1.4",
"description": "Turn any collection of objects into its own efficient tree or linked list using Symbol",
"main": "lib/SymbolTree.js",
"scripts": {
"test": "istanbul cover test/SymbolTree.js",
"posttest": "jshint lib test && jscs lib test",
"documentation": "jsdoc2md --src lib/SymbolTree.js > ./jsdoc/api.md"
},
"repository": {
"type": "git",
"url": "https://github.com/jsdom/js-symbol-tree.git"
},
"keywords": [
"list",
"queue",
"stack",
"linked-list",
"tree",
"es6",
"dom",
"symbol"
],
"author": "Joris van der Wel <joris@jorisvanderwel.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsdom/js-symbol-tree/issues"
},
"homepage": "https://github.com/jsdom/js-symbol-tree#symbol-tree",
"devDependencies": {
"istanbul": "^0.3.17",
"jscs": "^1.13.1",
"jsdoc-to-markdown": "^1.1.1",
"jshint": "^2.8.0",
"tape": "^4.0.0"
},
"jshintConfig": {
"esnext": true,
"node": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 8,
"latedef": true,
"newcap": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"unused": "vars",
"strict": true,
"laxbreak": true,
"varstmt": true
}
}