-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.39 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
{
"name": "rustils",
"version": "1.0.2",
"description": "Port of powerful Rust utils to JavaScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"docs": "typedoc --options typedoc.json --exclude \"**/*+(spec|index).ts\" src",
"prepublish": "npm run build",
"test": "nyc --require ts-node/register ./node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lodin/rustils.git"
},
"keywords": [
"rust",
"types",
"result",
"option"
],
"author": "Vlad Rindevich",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lodin/rustils/issues"
},
"homepage": "https://github.com/Lodin/rustils#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.38",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"ts-node": "^2.0.0",
"typedoc": "^0.5.5",
"typedoc-plugin-external-module-name": "^1.0.8",
"typescript": "^2.2.0-dev.20170130",
"ui-router-typedoc-themes": "^1.0.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/",
"dist/",
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}