-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.01 KB
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
{
"name": "helping_hand",
"description": "Javascript helper utilities for applications",
"version": "0.2.0",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"build": "npm run build:types && npm run rollup",
"build:prod": "npm run rollup -- --environment BUILD:production",
"build:types": "tsc --emitDeclarationOnly",
"build:watch": "npm run build:types -- --watch & npm run rollup -- --watch",
"lint": "eslint src/",
"jest": "jest",
"rollup": "rollup -c",
"test": "npm run jest",
"test:watch": "npm run jest -- --watch",
"test:coverage": "npm run jest -- --coverage",
"test:coveralls": "npm run test:coverage -- --coverageReporters=text-lcov | coveralls",
"type-check": "tsc --noEmit",
"prepublish": "npm run build",
"typedoc": "typedoc src/index.ts"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-optional-chaining": "^7.24.1",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.24.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleaner": "^0.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.3"
}
}