forked from amazon-ion/ion-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "ion-js",
"version": "3.0.0-beta.3",
"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",
"test": "grunt test",
"release": "grunt release",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"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"
}
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.3.0",
"grunt-ts": "^6.0.0-beta.19",
"grunt-typedoc": "^0.2.4",
"intern": "^3.4.1",
"remap-istanbul": "^0.9.1",
"semantic-release": "^6.3.6",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
}
}