-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.61 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
{
"name": "transform-json-types",
"version": "0.6.0",
"description": "An utility to generate Flow, TypeScript, Rust Serde Struct and Scala Case Class from JSON.",
"main": "dist/index.js",
"module": "src/index.js",
"browser": "umd/index.js",
"files": [
"dist",
"src",
"umd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/transform-it/transform-json-types.git"
},
"scripts": {
"commit": "git cz",
"test": "ava",
"test:watch": "ava --watch",
"test:cover": "nyc ava",
"test:report": "cat ./coverage/lcov.info | codecov && rm -rf ./coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"build": "npm run build:umd && npm run build:cjs",
"build:umd": "rollup -c rollup.umd.js",
"build:cjs": "rollup -c rollup.cjs.js",
"build:watch": "concurrently 'npm run build:umd -- -w' 'npm run build:cjs -- -w'",
"lint": "eslint src/**/*.js *.js tests/**/*.js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write src/**/*.js *.js tests/**/*.js",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"license": "MIT",
"devDependencies": {
"all-contributors-cli": "^4.4.0",
"ava": "^0.21.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"codecov.io": "^0.1.6",
"concurrently": "^3.5.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jsdom": "^9.12.0",
"lint-staged": "^4.0.1",
"nyc": "^11.0.3",
"pascal-case": "^2.0.1",
"prettier-eslint-cli": "^4.1.1",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-watch": "^4.3.1",
"semantic-release": "^6.3.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"author": {
"name": "Ritesh Kumar",
"email": "[email protected]",
"url": "https://github.com/ritz078"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/transform-it/transform-json-types",
"ava": {
"require": [
"babel-register",
"babel-polyfill"
]
},
"dependencies": {
"lodash": "^4.17.4",
"rust-keywords": "^1.1.0",
"sha1": "^1.1.1"
}
}