1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "@mightyplow/jslib",
- "version": "0.9.8",
- "description": "js helpers library",
- "main": "dist/index.js",
- "private": true,
- "devDependencies": {
- "babel-cli": "^6.26.0",
- "babel-preset-es2015": "^6.22.0",
- "nodeunit": "^0.10.2",
- "rimraf": "^2.6.1"
- },
- "scripts": {
- "createPackageJson": "node bin/createPackageJson.js",
- "nodeunit": "nodeunit",
- "test": "nodeunit tests",
- "build": "rimraf dist && babel src -d dist",
- "prebublish": "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": [
- "es2015"
- ]
- }
- }
|