-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "realworld-api",
"version": "1.0.2",
"description": "RealWorld library for open API calls using JavaScript",
"main": "index.js",
"scripts": {
"test": "tape test/api.js",
"build-docs": "documentation readme index.js --section=api",
"build-min": "browserify index.js --standalone RealWorld | uglifyjs -mc > realworld.min.js",
"preversion": "npm test",
"version": "npm run build-docs && npm run build-min",
"postversion": "git push && git push --tags"
},
"keywords": [
"realworld",
"api"
],
"browserify": {
"transform": [
"es2020"
]
},
"author": "Nick Peihl <[email protected]> (http://npeihl.com/)",
"repository": "https://github.com/nickpeihl/realworld-api.git",
"license": "Apache-2.0",
"dependencies": {
"nets": "^3.2.0",
"xtend": "^4.0.1",
"es2020": "^1.1.9"
},
"devDependencies": {
"browserify": "^14.4.0",
"documentation": "^5.3.2",
"run-parallel": "^1.1.6",
"tape": "^4.8.0",
"tape-cluster": "^2.1.2",
"uglifyjs": "^2.4.11"
}
}