-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "promise-clerk",
"version": "1.0.0",
"description": "A clerk is a white-collar worker who conducts general office tasks. The promise-clerk package conducts general Promise-related tasks.",
"main": "lib/index.js",
"scripts": {
"standard": "standard --fix",
"prepare": "npm run build",
"doc": "doctoc ./README.md",
"clean": "rm -rf lib",
"test": "jest",
"build": "npm run clean && npm run doc && babel src -d lib"
},
"keywords": [
"promise",
"utility",
"asynchronous"
],
"author": "Petrofeed Inc.",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"doctoc": "^1.3.1",
"jest-cli": "^22.3.0",
"standard": "^11.0.0"
},
"dependencies": {
"ordinal": "^1.0.2"
},
"standard": {
"ignore": [
"lib"
],
"globals": [
"afterEach",
"beforeEach",
"describe",
"expect",
"fail",
"it",
"jasmine",
"jest",
"pending",
"spyOn"
]
}
}