forked from rdkcentral/ThunderJS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.8 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
{
"author": "Michiel van der Geest <[email protected]>",
"contributors": [
"Metrological, Wouter <[email protected]>"
],
"name": "ThunderJS",
"version": "1.2.3",
"license": "apache",
"browser": "dist/thunderJS.js",
"main": "src/thunderJS.js",
"module": "module/thunderJS.js",
"scripts": {
"test": "tape -r esm tests/**/*.spec.js | tap-diff",
"lint": "eslint '**/*.{js}'",
"lint:fix": "eslint '**/*.{js}' --fix",
"build": "rollup -c",
"example:browser": "cd examples && npm install && npm run start:browser",
"example:node": "cd examples && npm install && npm run start:node"
},
"lint-staged": {
"*.{js}": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build && git add dist module"
}
},
"repository": {
"type": "git",
"url": "[email protected]:WebPlatformForEmbedded/ThunderJS.git"
},
"bugs": {
"url": "https://github.com/WebPlatformForEmbedded/ThunderJS/issues"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-alias": "^3.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.5.0",
"tap-diff": "^0.1.1",
"tape": "^4.13.2"
},
"dependencies": {
"ws": "^7.2.3"
}
}