Sha256: 8c1c01c60de23ec15fdf33206715409561a4dfff69cdc9897ed90d4daf138798
Contents?: true
Size: 1.62 KB
Versions: 4
Compression:
Stored size: 1.62 KB
Contents
{ "name": "xecmascript", "version": "0.0.0", "description": "Exercism exercises in ECMAScript 6.", "author": "Katrina Owen", "private": true, "repository": { "type": "git", "url": "https://github.com/exercism/xecmascript" }, "devDependencies": { "babel-jest": "^20.0.1", "babel-preset-env": "^1.4.0", "eslint": "^3.19.0", "jest": "^20.0.1" }, "jest": { "modulePathIgnorePatterns": [ "package.json" ] }, "babel": { "presets": [ "env" ] }, "scripts": { "test": "jest --no-cache ./*", "watch": "jest --no-cache --watch ./*", "lint": "eslint *.js; exit 0;", "lint-test": "eslint *.js && jest --no-cache ./* " }, "eslintConfig": { "parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "env": { "es6": true, "node": true, "jasmine": true }, "extends": "eslint:recommended", "rules": { "indent": [ "off", 2 ], "block-scoped-var": "off", "radix": "off", "no-use-before-define": "off", "one-var": [ "off", "always" ], "quotes": [ "off", "single", { "avoidEscape": true } ], "semi": [ "off", "always" ], "semi-spacing": [ "off", { "before": false, "after": true } ], "no-whitespace-before-property": "off", "space-before-blocks": [ "off", "always" ], "space-before-function-paren": [ "off", { "anonymous": "always", "named": "never" } ], "keyword-spacing": [ "off", { "before": true, "after": true } ], "no-multi-spaces": "off", "no-trailing-spaces": "off" } }, "licenses": [ "MIT" ], "dependencies": {} }
Version data entries
4 entries across 4 versions & 1 rubygems