1234567891011121314151617181920212223242526272829303132333435 |
- {
- "name": "@mightyplow/jslib",
- "version": "0.8.0",
- "description": "js, helpers library",
- "devDependencies": {
- "babel-cli": "^6.26.0",
- "babel-preset-es2015": "^6.22.0",
- "nodeunit": "^0.10.2"
- },
- "scripts": {
- "nodeunit": "nodeunit",
- "test": "nodeunit tests",
- "build": "babel lib -d dist",
- "prebublish": "npm run test && npm run build"
- },
- "files": [
- "dist",
- "lib"
- ],
- "keywords": [
- "js",
- "javascript",
- "helpers",
- "library"
- ],
- "author": {
- "name": "mightyplow",
- "email": "mightyplow@gmail.com",
- "url": "http://mightyplow.net"
- },
- "license": "ISC",
- "babel": {
- "presets": ["es2015"]
- }
- }
|