-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 2.48 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
93
94
95
{
"name": "@blasterjs/dev",
"version": "0.0.1",
"description": "React UI library designed and built by Azavea",
"main": "build/index.js",
"scripts": {
"build": "./scripts/build",
"build-docz": "./scripts/build-docz",
"clean": "./scripts/clean",
"docz": "docz dev",
"release": "./scripts/release",
"start": "./scripts/start",
"test": "jest --coverage --verbose --passWithNoTests",
"version": "chan release --group-changes $(node -p -e \"require('./lerna.json').version\") && git add CHANGELOG.md && git commit -m \"Update: changelog\"",
"watch:build": "npm-watch build"
},
"watch": {
"build": {
"patterns": [
"packages"
],
"ignore": [
"**/dist/*",
"node_modules",
"packages/testbed"
],
"quiet": false,
"verbose": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/raster-foundry/blasterjs.git"
},
"bugs": {
"url": "https://github.com/raster-foundry/blasterjs/issues"
},
"homepage": "https://github.com/raster-foundry/blasterjs",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.3",
"@geut/chan": "^1.3.0",
"all-contributors-cli": "^5.2.1",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.0",
"camelcase": "^5.0.0",
"chalk": "^2.4.1",
"commander": "^2.17.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16.2": "^1.0.0",
"fs-copy-file-sync": "^1.1.1",
"glob-loader": "^0.3.0",
"inquirer": "^6.0.0",
"jest": "^23.4.1",
"lerna": "^3.13.3",
"lerna-changelog": "^0.8.0",
"lint-staged": "^8.0.0",
"lodash.upperfirst": "^4.3.1",
"npm-watch": "^0.6.0",
"prettier": "^1.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"replace-in-file": "^3.4.0",
"rimraf": "^2.6.2",
"svgo": "^1.1.1",
"svgson-cli": "^1.1.0",
"svgson-next": "^4.3.0",
"webpack": "4.28.4"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"resetModules": true,
"testMatch": [
"**/?(*.)(spec).js?(x)"
],
"testPathIgnorePatterns": [
"<rootDir>node_modules/"
]
},
"bin": {
"blaster": "./bin/cli.js"
}
}