-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
{
"name": "binary-decision-diagram",
"version": "3.2.0",
"description": "A library to create, minimize and optimize binary decision diagrams",
"keywords": [
"binary decision diagram",
"bdd",
"bdds",
"binary-decision-diagrams",
"binary-decision-tree",
"robdd",
"mtbdd",
"truth-table",
"truth table"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pubkey/binary-decision-diagram.git"
},
"author": "pubkey",
"license": "ISC",
"bugs": {
"url": "https://github.com/pubkey/binary-decision-diagram/issues"
},
"homepage": "https://github.com/pubkey/binary-decision-diagram#readme",
"exports": {
".": {
"default": {
"types": "./dist/esm/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"default": "./dist/cjs/src/index.es5.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/src/index.es5.js",
"module": "./dist/esm/src/index.js",
"engines": {
"node": ">=16"
},
"types": "./dist/esm/src/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"transpile": "tsc -p ./ --module commonjs && echo '# transpile es5 (require) sucess!'",
"transpile:es": "tsc -p ./ --outDir ./dist/esm && echo '{ \"type\": \"module\", \"sideEffects\": false }' > dist/esm/src/package.json && echo '# transpile esm (modules) sucess!'",
"build": "rimraf -r ./dist && npm run transpile && npm run transpile:es",
"test": "npm run build && mocha ./dist/cjs/test/unit/index.test.js --timeout 40000 --bail"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "22.13.2",
"assert": "2.1.0",
"async-test-util": "2.5.0",
"mocha": "11.1.0",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"typescript": "5.5.4"
}
}