-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.03 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
66
67
68
69
70
71
{
"name": "introversion",
"description": "Swiss army knife for debugging JavaScript expressions and performance measurements",
"keywords": [
"js",
"debug",
"functional"
],
"license": "MIT",
"author": "Gene Zharov <[email protected]>",
"version": "0.5.1",
"homepage": "https://github.com/GeneZharov/introversion",
"bugs": {
"url": "https://github.com/GeneZharov/introversion/issues",
"email": "[email protected]"
},
"main": "lib/introversion.js",
"jsnext:main": "es/introversion.js",
"module": "es/introversion.js",
"files": [
"es",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/GeneZharov/introversion.git"
},
"scripts": {
"prettify": "prettier --write 'src/**/*.js'",
"lint": "eslint --cache src",
"flow": "flow check",
"flow:watch": "flow",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf es lib dist",
"checkall": "yarn prettify --loglevel=warn && yarn flow && yarn lint && yarn test",
"build": "rollup -c",
"build:watch": "rollup -c -w ",
"build:types": "cp introversion.d.ts introversion.js.flow lib",
"prepublishOnly": "yarn checkall && yarn clean && yarn build && yarn build:types"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@babel/preset-flow": "7.8.3",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.0",
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"flow-bin": "0.117.0",
"jest": "25.1.0",
"prettier": "1.19.1",
"rimraf": "3.0.1",
"rollup": "1.31.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-ignore": "1.0.5",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "5.2.0"
},
"dependencies": {
"chalk": "3.0.0",
"ramda": "0.26.1",
"stacktrace-js": "2.0.2",
"url-parse": "1.4.7",
"util": "0.12.1"
}
}