-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "chunk-handler",
"version": "1.6.0",
"description": "The Chunk Handler for string and array object in NodeJS or Browser",
"main": "src/chunkhandler.js",
"types": "src/chunkhandler.d.ts",
"scripts": {
"browserify": "browserify src/chunkhandler.js --s ChunkHandler -o dist/chunkhandler.js",
"babel": "babel dist/chunkhandler.js --out-file dist/chunkhandler.js",
"minify": "uglifyjs dist/chunkhandler.js -c -m -o dist/chunkhandler.min.js",
"build": "semistandard && npm run browserify && npm run babel && npm run minify",
"test": "semistandard && nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aalfiann/chunk-handler.git"
},
"keywords": [
"chunk",
"chunk-async",
"chunk-handler"
],
"author": "M ABD AZIZ ALFIAN",
"license": "MIT",
"bugs": {
"url": "https://github.com/aalfiann/chunk-handler/issues"
},
"homepage": "https://github.com/aalfiann/chunk-handler#readme",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"browserify": "^17.0.0",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"semistandard": "^16.0.1",
"uglify-js": "^3.17.4"
},
"semistandard": {
"ignore": [
"dist/*",
"*.ts"
]
}
}