package.json
1 { 2 "name": "levn", 3 "version": "0.3.0", 4 "author": "George Zahariev <z@georgezahariev.com>", 5 "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", 6 "homepage": "https://github.com/gkz/levn", 7 "keywords": [ 8 "levn", 9 "light", 10 "ecmascript", 11 "value", 12 "notation", 13 "json", 14 "typed", 15 "human", 16 "concise", 17 "typed", 18 "flexible" 19 ], 20 "files": [ 21 "lib", 22 "README.md", 23 "LICENSE" 24 ], 25 "main": "./lib/", 26 "bugs": "https://github.com/gkz/levn/issues", 27 "license": "MIT", 28 "engines": { 29 "node": ">= 0.8.0" 30 }, 31 "repository": { 32 "type": "git", 33 "url": "git://github.com/gkz/levn.git" 34 }, 35 "scripts": { 36 "test": "make test" 37 }, 38 "dependencies": { 39 "prelude-ls": "~1.1.2", 40 "type-check": "~0.3.2" 41 }, 42 "devDependencies": { 43 "livescript": "~1.4.0", 44 "mocha": "~2.3.4", 45 "istanbul": "~0.4.1" 46 } 47 }