-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "noflo-math",
"description": "Mathematical components for NoFlo",
"version": "0.4.0",
"author": {
"name": "Henri Bergius",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-math.git"
},
"license": "MIT",
"noflo": {
"icon": "plus-circle"
},
"dependencies": {
"noflo": "^1.0.0"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.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",
"mocha": "^8.1.3",
"noflo-component-loader": "^0.4.0",
"noflo-runtime-headless": "^0.2.0",
"noflo-runtime-postmessage": "^0.13.0",
"noflo-webpack-config": "^2.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"keywords": [
"noflo"
],
"scripts": {
"prebuild": "noflo-cache-preheat",
"build": "webpack --config node_modules/noflo-webpack-config/webpack.config.js",
"pretest": "eslint components spec",
"test:node": "mocha --exit --require node_modules/noflo-webpack-config/inject.js spec/*.js",
"test:browser": "karma start node_modules/noflo-webpack-config/karma.config.js",
"test": "npm run test:node && npm run test:browser"
}
}