-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "riotify",
"version": "5.0.0",
"description": "browserify plugin for riot tag files",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"through": "^2.3.8"
},
"devDependencies": {
"chai": "^4.3.4",
"concat-stream": "^2.0.0",
"eslint": "^7.30.0",
"eslint-config-riot": "^3.0.0",
"mocha": "^9.0.2",
"module-deps": "^6.2.3"
},
"peerDependencies": {
"@riotjs/compiler": "^6.0.0"
},
"scripts": {
"test": "npm run eslint && npx mocha test/*.js",
"prepare": "npm i --no-save @riotjs/compiler",
"eslint": "eslint index.js test/*.js",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/riot/riotify.git"
},
"keywords": [
"browserify",
"browserify-transform",
"module-deps"
],
"author": "Gianluca Guarini - gianluca.guarini@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/riotify/issues"
}
}