-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "br_states",
"version": "3.0.1",
"description": "",
"main": "api/estados.js",
"author": {
"name": "Davi de Carvalho",
"email": "[email protected]",
"url": "https://github.com/DavideCarvalho"
},
"repository": {
"type": "git",
"url": "https://github.com/DavideCarvalho/brazilian_states"
},
"bugs": {
"url": "https://github.com/DavideCarvalho/brazilian_states/issues"
},
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "rimraf lib && npm run build:types & npm run build:js && copyfiles -f ./lib/src/api/estados.d.ts ./lib/api && copyfiles -f ./lib/src/api/estados/*.d.ts ./lib/api/estados && copyfiles -f ./lib/src/types/*.d.ts ./lib/types && copyfiles -f package.json ./lib && rimraf lib/src && rimraf lib/__tests__",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --ignore */node_modules,*/__tests__ --out-dir lib --extensions \".ts\" --source-maps inline",
"generatedoc": "documentation build src/** -f md -o docs.md"
},
"dependencies": {
"@types/lodash": "^4.14.119",
"lodash": "^4.17.13",
"remove-accents": "^0.4.2"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "7.3.3",
"@babel/register": "7.5.5",
"@types/jest": "24.9.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"benchmark": "2.1.4",
"chai": "4.2.0",
"copyfiles": "2.1.1",
"coveralls": "3.1.1",
"documentation": "13.2.5",
"jest": "26.6.3",
"nodemon": "2.0.17",
"nyc": "11.9.0",
"prettier": "^2.7.1",
"rimraf": "3.0.2",
"tslint": "5.18.0",
"typescript": "3.5.3"
},
"nyc": {
"exclude": [
"src/api/estados/**.js",
"test"
]
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "babel-jest"
}
}
}