-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "@betaweb/twicejs",
"version": "1.0.4",
"description": "Manage duplicates, count item occurences, dedupe an Array",
"main": "index.js",
"scripts": {
"dev": "parcel index.js",
"watch": "parcel --watch index.js",
"build": "parcel build index.js -d dist/ --out-file TwiceJS.min.js",
"doc": "jsdoc -p -R README.md -a all -c jsdoc.conf.json",
"test": "jest --watchAll --colors",
"test-ci": "jest --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betaWeb/twicejs.git"
},
"keywords": [
"javascript",
"js",
"array",
"arrays",
"duplicates",
"duplicate",
"dedupe",
"items",
"item",
"occurences",
"occurence",
"count",
"counter",
"countable",
"manage",
"manage-arrays"
],
"author": "Cyprien GLEPIN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betaWeb/twicejs/issues"
},
"homepage": "https://github.com/betaWeb/twicejs#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@pixi/jsdoc-template": "^2.6.0",
"@types/jest": "^25.2.3",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"jest-extended": "^0.11.5",
"jsdoc": "^3.6.3",
"parcel-bundler": "^1.12.4"
}
}