-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "bit-array",
"description": "Bit array implementation in javascript",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/Bubblesphere/bit-array.git"
},
"keywords": [
"bit",
"array",
"typescript",
"javascript"
],
"author": "Déric Dallaire",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bubblesphere/bit-array/issues"
},
"homepage": "https://github.com/Bubblesphere/bit-array",
"devDependencies": {
"@types/jest": "^23.3.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"jest": "^23.4.1",
"jest-coverage-badges": "^1.0.0",
"ts-jest": "^23.0.1",
"ts-loader": "^4.1.0",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"scripts": {
"start": "webpack-dev-server --open-page dev/index.html --config webpack.dev.js --mode development ",
"build": "webpack --config webpack.prod.js --mode production",
"test": "jest --coverage && jest-coverage-badges"
}
}