1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "dom_js",
- "private": true,
- "version": "0.0.1",
- "description": "Coding exercise for getting familiar with the DOM, ECMAScript, and Ava",
- "main": "index.js",
- "ava": {
- "babel": "inherit",
- "require": [
- "./test/_config.js"
- ]
- },
- "scripts": {
- "lint": "eslint .",
- "test": "ava \"test/**/test-*.js\"",
- "watch:test": "yarn run test --watch"
- },
- "repository": "https://notabug.org/rem/dom_js.git",
- "author": "René Maya <rem@disroot.org>",
- "license": "ISC",
- "devDependencies": {
- "ava": "^0.24.0",
- "babel-core": "^6.26.0",
- "babel-eslint": "^8.1.2",
- "babel-polyfill": "^6.26.0",
- "babel-preset-env": "^1.6.1",
- "babel-register": "^6.26.0",
- "eslint": "^4.14.0",
- "jsdom": "^11.5.1"
- }
- }
|