-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1011 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
34
35
36
37
38
{
"name": "@notainc/delay",
"version": "0.0.7",
"description": "delay for async-await",
"main": "lib/index.js",
"scripts": {
"build": "run-s build:*",
"build:clean": "rm -rf lib/",
"build:babel": "babel src/ --out-dir lib/",
"pretest": "npm run build",
"test": "run-s test:*",
"test:standard": "standard",
"test:mocha": "NODE_ENV=test mocha 'test/*.js' -r @babel/register -r @babel/polyfill --timeout 10000 --exit",
"prepublishOnly": "npm test",
"postpublish": "git push origin --tags && git push origin master"
},
"keywords": [
"delay"
],
"author": "Sho Hashimoto <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"chai": "^4.2.0",
"mocha": "^6.1.3",
"npm-run-all": "^4.1.5",
"standard": "^12.0.1"
},
"standard": {
"ignore": [
"/lib"
]
}
}