-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.85 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.85 KB
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
93
94
95
96
97
{
"private": true,
"version": "0.0.0",
"description": "<p align=\"center\"><img src=\"/docs/assets/boldr-text-logo.png\"></p>",
"main": "index.js",
"author": "Steven Truesdell <steven@strues.io>",
"license": "MIT",
"repository": "git+https://github.com/boldr/boldr-tools",
"bugs": "https://github.com/boldr/boldr-tools/issues",
"homepage": "https://github.com/boldr/boldr-tools#readme",
"directories": {
"doc": "docs"
},
"scripts": {
"authors": "node ./scripts/authors",
"bootstrap": "node_modules/.bin/lerna bootstrap",
"clean": "node ./scripts/clean",
"changelog": "node ./scripts/changelog",
"format": "prettier --single-quote=true --jsx-bracket-same-line=false --trailing-comma=all --write \"packages/**/src/**/*.js\"",
"postinstall": "lerna bootstrap",
"prettier": "node scripts/prettier write",
"precoverage": "rimraf ./coverage",
"release": "node ./scripts/release",
"test": "jest",
"test:ci": "node_modules/.bin/lerna run test",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "lerna run lint"
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-boldr": "^0.8.8",
"babel-preset-env": "^1.5.1",
"cz-conventional-changelog-emoji": "^0.1.0",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-boldr": "^0.9.8",
"flow-bin": "0.47.0",
"jest": "20.0.4",
"lerna": "2.0.0-rc.5",
"minimist": "^1.2.0",
"node-fetch": "^1.7.0",
"prettier": "^1.3.1",
"ps-tree": "1.1.0",
"rimraf": "^2.6.1",
"semver": "5.3.0",
"shelljs": "0.7.7"
},
"jest": {
"modulePathIgnorePatterns": [
"examples/.*",
"packages/.*/es",
"packages/.*/dist",
"packages/boldr-project-template/.*"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/flow-typed/"
],
"collectCoverageFrom": [
"**/packages/boldr-utils/*.js",
"!**/bin/**",
"!**/__mocks__/**",
"!**/__tests__/**",
"!**/__fixtures__/**"
],
"coveragePathIgnorePatterns": [
"**/node_modules/",
"**/packages/*/node_modules/",
"**/packages/boldr-project-template/**",
"**/coverage/",
"**/packages/boldr-dx/src/utils/jest"
],
"coverageReporters": [
"json"
],
"transform": {
".js": "./internal/transform.js"
},
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-emoji"
}
}
}