forked from metarhia/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@metarhia/common",
"version": "2.2.0",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Metarhia Common Library",
"license": "MIT",
"keywords": [
"metarhia",
"common",
"impress",
"jstp",
"globalstorege",
"metasync"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/common"
},
"main": "common.js",
"exports": {
".": {
"require": "./common.js",
"import": "./common.mjs"
},
"./lib/": {
"require": "./lib/"
}
},
"browser": {
"common.js": "./dist/common.js",
"dist/lib/fs.js": false,
"dist/lib/network.js": false,
"dist/lib/stream.js": false
},
"readmeFilename": "README.md",
"files": [
"common.mjs",
"lib/",
"dist/"
],
"scripts": {
"test": "npm run -s lint && metatests test/ && for test in ./sequential-test/*.js; do metatests \"$test\"; done",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"doc": "metadoc",
"build": "babel common.js -d dist && babel lib -d dist/lib && node tools/esmodules-export-gen.js",
"prepublish": "npm run -s build"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@metarhia/doc": "^0.6.1",
"eslint": "^6.8.0",
"eslint-config-metarhia": "^7.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"metatests": "^0.7.1",
"prettier": "1.19.x"
}
}