-
Notifications
You must be signed in to change notification settings - Fork 531
/
package.json
119 lines (119 loc) · 3.33 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "blueocean-pipeline-editor",
"version": "0.0.1",
"description": "Pipeline editor plugin for Jenkins Blue Ocean",
"repository": {
"type": "git",
"url": "https://github.com/jenkinsci/blueocean-plugin.git"
},
"scripts": {
"storybook": "start-storybook -p 9002 -s node_modules/@jenkins-cd/design-language/dist/assets/,target/classes/org/jenkins/ui/jsmodules/blueocean_pipeline_editor/",
"lint": "jjsbuilder --tasks lint",
"lint:fix": "jjsbuilder --tasks lint --fixLint",
"lint:watch": "jjsbuilder --tasks lint:watch --continueOnLint",
"test": "gulp test",
"test:fast": "gulp test:fast",
"test:debug": "node --debug-brk ./node_modules/.bin/gulp test:debug",
"bundle": "jjsbuilder --tasks bundle",
"bundle:watch": "jjsbuilder --tasks bundle:watch",
"mvnbuild": "jjsbuilder --tasks lint,bundle",
"mvnbuild:fast": "jjsbuilder --tasks bundle",
"mvntest": "jjsbuilder --tasks test"
},
"author": "Josh McDonald <[email protected]> (https://github.com/sophistifunk)",
"license": "MIT",
"devDependencies": {
"@jenkins-cd/eslint-config-jenkins": "0.0.2",
"@jenkins-cd/js-builder": "0.0.64",
"@jenkins-cd/js-builder-jest": "0.0.4",
"@kadira/storybook": "2.20.1",
"@types/bluebird": "3.5.26",
"@types/bluebird-global": "3.5.11",
"@types/react": "15.6.14",
"babel": "6.5.2",
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"chai": "3.5.0",
"create-hmac": "1.1.4",
"enzyme": "2.3.0",
"eslint": "2.8.0",
"eslint-plugin-react": "4.3.0",
"eslint-to-editorconfig": "1.2.0",
"gulp": "3.9.1",
"gulp-mocha": "2.2.0",
"gulp-typescript": "4.0.1",
"jest": "19.0.2",
"jest-cli": "19.0.2",
"jsdom": "16.5.0",
"mocha": "2.4.5",
"nock": "8.0.0",
"react-addons-test-utils": "15.4.2",
"ts-jest": "19.0.2",
"tsify": "4.0.0",
"typescript": "3.3.3333"
},
"dependencies": {
"@jenkins-cd/blueocean-core-js": "1.10.4",
"@jenkins-cd/design-language": "1.10.4",
"@jenkins-cd/js-extensions": "0.0.44",
"@jenkins-cd/js-modules": "0.0.10",
"lodash.debounce": "4.0.8",
"mobx": "2.6.0",
"mobx-react": "3.5.7",
"mobx-utils": "1.1.2",
"react": "15.4.2",
"react-addons-css-transition-group": "15.4.2",
"react-dnd": "2.5.4",
"react-dnd-html5-backend": "2.5.4",
"react-dom": "15.4.2",
"react-router": "2.8.1"
},
"jenkinscd": {
"import": [
"@jenkins-cd/blueocean-core-js@any",
"@jenkins-cd/design-language@any",
"@jenkins-cd/js-extensions@any",
"react@any",
"react-addons-css-transition-group@any",
"react-dom@any",
"react-router@any"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"^.+\\.jsx?$": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"browserify": {
"extensions": [
".js",
".es6",
".jsx",
".hbs",
".ts",
".tsx"
],
"plugin": [
[
"tsify",
{
"allowJs": false,
"project": "tsconfig.json"
}
]
]
}
}