-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.49 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
72
73
74
75
76
77
78
79
80
81
{
"name": "easy-bits",
"version": "1.2.2",
"author": "aesy",
"license": "MIT",
"description": "Enums, BitFlags, BitFields, BitMasks and BitArrays for JavaScript & TypeScript",
"keywords": [
"Enum",
"BitFlag",
"BitField",
"BitMask",
"BitArray",
"BitSet",
"JavaScript",
"TypeScript"
],
"homepage": "https://github.com/aesy/easy-bits#readme",
"bugs": {
"url": "https://github.com/aesy/easy-bits/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aesy/easy-bits.git"
},
"main": "dist/easy-bits.min.js",
"module": "dist/easy-bits.min.mjs",
"types": "typings/easy-bits.d.ts",
"exports": {
"require": "./dist/easy-bits.min.js",
"import": "./dist/easy-bits.min.mjs"
},
"scripts": {
"build:dev": "webpack --config ./config/webpack.config.development.js",
"build:prod": "npm run build:clean && webpack --config ./config/webpack.config.production.js",
"build:watch": "npm run build:dev -- --watch",
"build:clean": "rimraf ./dist ./.tmp",
"clean": "npm run build:clean && npm run test:clean",
"docs:clean": "rimraf ./docs",
"docs:gen": "jsdoc --configure ./config/jsdoc.json",
"lint": "eslint src --config ./config/.eslintrc.json",
"lint:fix": "npm run lint -- --fix",
"test:node": "nyc --include=src instant-mocha --webpack-config ./config/webpack.config.test.js \"test/**/*\"",
"test:browser": "karma start ./config/karma.config.js",
"test:clean": "rimraf ./coverage ./.nyc_output",
"test:coverage:check": "nyc report && nyc check-coverage --lines=80 --functions=80 --branches=80",
"test:coverage:report": "nyc report --reporter=text-lcov | coveralls",
"test:watch": "npm run test -- --reporter=min --watch"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.24.7",
"babel-eslint": "10.1.0",
"babel-loader": "9.1.3",
"chai": "4.4.1",
"core-js": "3.37.1",
"coveralls": "3.1.1",
"docdash": "2.0.2",
"dotenv": "16.4.5",
"eslint": "7.32.0",
"eslint-config-xo": "0.39.0",
"instant-mocha": "1.5.2",
"istanbul-instrumenter-loader": "3.0.1",
"jsdoc": "4.0.3",
"karma": "6.4.3",
"karma-chai": "0.1.0",
"karma-firefox-launcher": "2.1.3",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"mocha": "10.5.0",
"nyc": "17.0.0",
"rimraf": "5.0.7",
"terser-webpack-plugin": "5.3.10",
"webpack": "5.92.1",
"webpack-cli": "5.1.4",
"webpack-merge": "6.0.1"
}
}