forked from amazon-ion/ion-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
{
"name": "ion-js",
"version": "4.1.0-SNAPSHOT",
"description": "A JavaScript implementation of the Ion data interchange format",
"main": "dist/commonjs/es6/Ion.js",
"types": "dist/commonjs/es6/Ion.d.ts",
"scripts": {
"commit": "git-cz",
"prepare": "grunt",
"test": "nyc mocha",
"release": "grunt release"
},
"repository": {
"type": "git",
"url": "https://github.com/amzn/ion-js.git"
},
"keywords": [
"ion",
"JSON",
"data format"
],
"author": "The Ion Team <[email protected]> (https://amzn.github.io/ion-docs/index.html)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/amzn/ion-js/issues"
},
"homepage": "https://github.com/amzn/ion-js#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**.ts"
],
"exclude": [
"src/.**"
],
"check-coverage": false
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.7",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-shell": "^3.0.1",
"grunt-ts": "^6.0.0-beta.21",
"grunt-tslint": "^5.0.2",
"grunt-typedoc": "^0.2.4",
"jsbi": "3.1.1",
"mocha": "^6.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^14.1.1",
"semantic-release": "^15.13.24",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"typedoc": "^0.16.10",
"typescript": "^3.6.2"
},
"peerDependencies": {
"jsbi": "^3.1.1"
}
}