-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.78 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
{
"name": "x690",
"version": "0.1.0",
"description": "Low-level decoder for X.690 Distinguished Encoding Rules (DER)",
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"scripts": {
"clean": "rimraf coverage dist",
"prebuild": "npm run clean",
"build": "babel src --out-dir dist --source-maps",
"prepublish": "npm run build",
"lint": "as-i-preach",
"test": "ava",
"posttest": "npm run lint",
"coverage": "npm run build -- --plugins istanbul && nyc npm test",
"watch:build": "npm run build -- --watch",
"watch:test": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novemberborn/x690.git"
},
"keywords": [
"asn.1",
"asn1",
"decode",
"der",
"parse",
"x.690",
"x690"
],
"author": "Mark Wubben (https://novemberborn.net/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/novemberborn/x690/issues"
},
"homepage": "https://github.com/novemberborn/x690#readme",
"devDependencies": {
"@novemberborn/as-i-preach": "^10.1.0",
"ava": "^0.21.0",
"babel-cli": "^6.6.5",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-plugin-transform-strict-mode": "^6.6.5",
"nyc": "^11.0.0",
"rimraf": "^2.5.2"
},
"ava": {
"source": [
"dist/**/*.js"
]
},
"babel": {
"plugins": [
"transform-es2015-destructuring",
"transform-es2015-modules-commonjs",
"transform-strict-mode"
]
},
"nyc": {
"cache": true,
"instrument": false,
"reporter": [
"html",
"lcov",
"text"
],
"sourceMap": false
},
"standard-engine": "@novemberborn/as-i-preach"
}