-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.01 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "arboriculture",
"version": "0.9.0",
"description": "A collection of data structures whose traditional naming suggests they were inspired by a walk in the woods.",
"main": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"directories": {
"doc": "docs",
"example": "examples",
"src": "src",
"test": "test"
},
"scripts": {
"prebuild": "npm run clean:dist",
"build": "npm run compile:src",
"postbuild": "npm run transpile",
"compile:src": "tsc --target es6 --outDir dist/es6",
"compile:examples": "tsc examples/*.demo.ts --target es6",
"compile:tests": "tsc src/**/*.spec.ts --target es6",
"lint": "tslint .",
"pretest": "npm run clean:src",
"test": "nyc mocha",
"securitycheck": "nsp check",
"predoc": "npm run clean:docs",
"doc": "typedoc --out docs/autogen --includeDeclarations --excludeExternals",
"pretranspile": "rm -rf dist/es5 && mkdir dist/es5",
"transpile": "babel dist/es6 --out-file dist/es5/arboriculture.js",
"posttranspile": "npm run uglify",
"preuglify": "rm -rf dist/arboriculture.min.js",
"uglify": "uglifyjs dist/es5/arboriculture.js --compress --mangle --mangle-props --source-map --output dist/arboriculture.min.js",
"prethewholenine": "npm run clean",
"thewholenine": "npm run lint && npm run build && npm run test && npm run securitycheck",
"clean": "npm run clean:dist & npm run clean:docs & npm run clean:misc & npm run clean:examples & npm run clean:src",
"clean:dist": "rm -rf dist",
"clean:docs": "rm -rf docs/autogen",
"clean:misc": "rm -rf index.d.ts index.js index.js.map npm-debug.log",
"clean:examples": "rm -rf examples/*.js",
"clean:src": "rm -rf src/**/*.js src/**/*.js.map"
},
"nyc": {
"include": [
"src/**/*.spec.ts",
"test/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/haleyhousellc/arboriculture.git"
},
"keywords": [
"typescript",
"library",
"data structure",
"tree",
"binary tree",
"binary search tree",
"red-black tree"
],
"author": "Graham Haley <graham.andrew.haley@gmail.com> (https://haleyhousellc.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/haleyhousellc/arboriculture/issues"
},
"homepage": "https://github.com/haleyhousellc/arboriculture#readme",
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^8.5.2",
"@types/uuid": "^3.0.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"chai": "^4.0.2",
"mocha": "^3.4.2",
"nsp": "^2.6.3",
"nyc": "^11.0.3",
"source-map-support": "^0.4.15",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typedoc": "^0.7.1",
"typescript": "^2.3.4",
"uglify-js": "^3.0.17"
},
"dependencies": {
"uuid": "^3.1.0"
}
}