-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "noflo-webpack-config",
"version": "2.0.3",
"description": "Base webpack configuration for NoFlo component projects",
"main": "webpack.config.js",
"scripts": {
"prebuild": "noflo-cache-preheat",
"build": "webpack",
"pretest": "eslint *.js",
"fbp-spec": "fbp-spec --address ws://localhost:3569 --command \"noflo-runtime-headless -f dist/test.js\" spec/*.yaml",
"karma": "karma start karma.config.js",
"test": "npm run fbp-spec && npm run karma"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-webpack-config.git"
},
"keywords": [
"noflo",
"webpack"
],
"author": "Henri Bergius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/noflo/noflo-webpack-config/issues"
},
"homepage": "https://github.com/noflo/noflo-webpack-config#readme",
"devDependencies": {
"copy-webpack-plugin": "^8.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.14.0",
"fbp-spec": "^0.8.0",
"karma": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"noflo-component-loader": "^0.4.0",
"noflo-core": "^0.6.0",
"noflo-runtime-headless": "^0.2.0",
"noflo-runtime-postmessage": "^0.13.0",
"puppeteer": "^8.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"events": "^3.2.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"util": "^0.12.3"
}
}