12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@mightyplow/jslib",
- "version": "0.21.1",
- "description": "js helpers library",
- "main": "dist/index.js",
- "private": true,
- "devDependencies": {
- "babel-cli": "^6.26.0",
- "babel-preset-env": "^1.6.0",
- "babel-preset-stage-2": "^6.24.1",
- "jsdoc-to-markdown": "^3.0.0",
- "nodeunit": "^0.10.2",
- "rimraf": "^2.6.1"
- },
- "scripts": {
- "createPackageJson": "BABEL_ENV=modules babel-node bin/createPackageJson.js",
- "doc": "jsdoc2md -f src/**/*.js > dist/README.md",
- "nodeunit": "nodeunit",
- "test": "BABEL_ENV=modules babel-node node_modules/.bin/nodeunit src/**/__tests__/*.test.js",
- "build": "rimraf dist && babel src -d dist --ignore __tests__",
- "watch": "npm run build -- --watch",
- "postbuild": "npm run doc",
- "prepublish": "npm run test && npm run build && npm run createPackageJson",
- "publish": "cd dist && npm publish"
- },
- "keywords": [
- "js",
- "javascript",
- "helpers",
- "library"
- ],
- "author": {
- "name": "mightyplow",
- "email": "mightyplow@gmail.com",
- "url": "http://mightyplow.net"
- },
- "license": "ISC",
- "babel": {
- "presets": [
- [
- "env",
- {
- "modules": false
- }
- ],
- "stage-2"
- ],
- "env": {
- "modules": {
- "presets": [
- [
- "env",
- {
- "modules": "commonjs"
- }
- ]
- ]
- }
- }
- },
- "dependencies": {
- "core-js": "^2.5.1"
- }
- }
|