-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "os-types",
"description": "Fiscal Data Type Handling",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel src/index.js -o dist/index.js && babel src/extra-options.js -o dist/extra-options.js",
"prepare": "npm run build",
"postbuild": "cp src/*.json dist/",
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 85 --branches 85 --functions 85 --lines 85",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "npm run test",
"test": "mocha src/index.test.js --compilers js:babel/register",
"pretest:single": "npm run build",
"test:single": "cp src/index.test.js dist/ && istanbul cover -x *.test.js _mocha -- -R spec dist/index.test.js --compilers js:babel/register && rm dist/index.test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/openspending/os-types.git"
},
"keywords": [],
"author": "Adam Kariv <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/openspending/os-types/issues"
},
"homepage": "https://github.com/openspending/os-types#readme",
"dependencies": {
"jsontableschema": "^0.2.1",
"lodash": "4.10.0",
"lodash-addons": "^0.3.1",
"requirejs": "^2.2.0"
},
"devDependencies": {
"babel": "5.8.21",
"chai": "3.3.0",
"commitizen": "1.0.5",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "0.3.2",
"istanbul": "git+https://github.com/gotwarlost/istanbul#source-map",
"mocha": "^5.2.0",
"mocha-each": "^1.1.0",
"semantic-release": "^4.3.5",
"word-wrap": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:single && npm run check-coverage"
}
},
"bin": {
"os-types": "src/cli.js"
},
"version": "1.15.2"
}