-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 2.49 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": "monapt",
"version": "0.0.0-semantic-release",
"description": "Eliminate null/undefined errors in JS...and more!",
"author": {
"name": "Kevin Li",
"email": "[email protected]",
"url": "https://jiawei.li/"
},
"license": "MIT",
"homepage": "https://github.com/jiaweihli/monapt#readme",
"bugs": {
"url": "https://github.com/jiaweihli/monapt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiaweihli/monapt.git"
},
"scripts": {
"build": "webpack --config build.webpack.config.js",
"commit": "git-cz",
"commitmsg": "commitplease .git/COMMIT_EDITMSG",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint:ts": "tslint --format verbose --config ./src/tslint.json --project ./src/tsconfig.json --type-check './src/**/*.ts' && tslint --format verbose --config ./test/tslint.json --project ./test/tsconfig.json --type-check './test/**/*.ts'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"smoke:ts": "tsc --noEmit --pretty --project ./src/tsconfig.json && tsc --noEmit --pretty --project ./test/tsconfig.json",
"test": "webpack --config test.webpack.config.js && nyc ava --verbose",
"watch": "webpack --config build.webpack.config.js --watch"
},
"main": "dist/monapt.js",
"typings": "dist/src/monapt.d.ts",
"files": [
"dist/",
"README.md"
],
"keywords": [
"option",
"optional",
"future",
"try",
"monad",
"functional",
"util",
"scala",
"type",
"types"
],
"devDependencies": {
"ava": "1.0.0-beta.3",
"commitizen": "2.9.6",
"commitplease": "2.7.10",
"condition-circle": "1.5.0",
"conventional-changelog-cli": "1.3.1",
"conventional-commit-types": "2.1.0",
"coveralls": "2.13.1",
"cracks": "3.1.2",
"cz-conventional-changelog": "2.0.0",
"glob": "7.1.2",
"husky": "0.14.1",
"istanbul-instrumenter-loader": "2.0.0",
"nyc": "11.0.3",
"semantic-release": "6.3.6",
"ts-loader": "2.2.1",
"tslint": "5.1.0",
"typescript": "2.7.1",
"webpack": "2.6.1"
},
"commitplease": {
"nohook": true,
"style": "angular",
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"style",
"test"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyConditions": "condition-circle"
}
}