-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "instant-utils",
"version": "1.0.1",
"description": "Lightweight utility library to assist other [`instant`](https://github.com/cjmyles/instant) packages.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require babel-core/register --require babel-polyfill",
"build": "babel ./src -d ./lib",
"build:watch": "babel -w ./src -d ./lib",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjmyles/instant-utils.git"
},
"keywords": [
"javascript",
"es6",
"async"
],
"author": "Craig Myles",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"mocha": "^5.2.0"
}
}