-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "identifiers-js",
"version": "0.8.1",
"description": "Identifiers JavaScript implementation",
"keywords": [
"identifiers",
"id",
"crockford",
"base-32",
"base32",
"base128",
"base-128",
"uuid",
"datetime",
"geo"
],
"main": "./lib/index.js",
"types": "./lib/types-export.d.ts",
"repository": "https://github.com/Identifiers/identifiers-js",
"author": "Matt Bishop (https://github.com/mattbishop)",
"license": "MIT",
"private": false,
"dependencies": {
"js.spec": "^1.0.0-23",
"long": "^4.0.0",
"msgpack-typed-numbers": "^0.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/benchmark": "2.1.0",
"@types/chai": "4.2.14",
"@types/faker": "5.1.5",
"@types/long": "4.0.1",
"@types/mocha": "8.2.0",
"@types/node": "10.17.51",
"benchmark": "2.1.4",
"chai": "4.2.0",
"coveralls": "3.1.0",
"faker": "5.2.0",
"js.spec-chai": "0.1.7",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"spec": "identifiers/spec#9119f8c0bfde8a9cf466aeec04a5d2ee533d82a3",
"ts-loader": "8.0.14",
"ts-node": "9.1.1",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "4.1.3",
"webpack": "5.17.0",
"webpack-cli": "4.4.0"
},
"scripts": {
"clean": "rimraf lib dist coverage .nyc_output .browser-test yarn-error.log",
"build:commonjs": "tsc",
"build:webpack-test": "rimraf .browser-test && node_modules/.bin/webpack --config=webpack/webpack.dev.config.js",
"build:webpack": "rimraf dist && node_modules/.bin/webpack --config=webpack/webpack.prod.config.js",
"build": "yarn run clean & yarn run build:commonjs & yarn run build:webpack",
"test": "mocha --config=mocha.yaml",
"benchmark": "ts-node benchmark",
"prof": "node --trace-deopt -r ts-node/register benchmark",
"coverage": "nyc mocha --opts mocha.opts && nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "yarn run build"
},
"files": [
"src",
"lib",
"dist"
],
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"reporter": [
"html"
]
}
}