-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "noflo-polymer",
"description": "Polymer wrapper component for NoFlo",
"version": "3.0.0",
"author": {
"name": "Henri Bergius",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-polymer.git"
},
"license": "MIT",
"dependencies": {
"@polymer/polymer": "^3.0.0",
"@webcomponents/webcomponentsjs": "^2.5.0",
"noflo": "^1.0.0"
},
"noflo": {
"loader": "lib/ComponentLoader"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.8.0",
"grunt": "^1.0.1",
"grunt-noflo-browser": "^2.0.2",
"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.2.1",
"puppeteer": "^8.0.0"
},
"scripts": {
"build": "grunt build",
"lint": "eslint lib/*.js",
"pretest": "npm run lint && npm run build",
"test": "karma start"
},
"keywords": [
"noflo",
"polymer"
]
}