forked from conversabit/wasap.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.35 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
{
"name": "wasap.js",
"version": "0.0.0",
"main": "dist/wasap.js",
"module": "src/wasap.js",
"scripts": {
"test": "eslint src",
"build_full": "tarima -Ufqe dist",
"build_min": "npm run build_full -- -OR '**:{basedir}/{name}.min.js'",
"build": "npm run build_full && npm run build_min",
"dev": "tarima -des"
},
"tarima": {
"src": "src",
"public": ".",
"dest": ".",
"bundle": [
"**/*.js"
],
"rename": [
"**/*.js:dist/{fullpath/1}",
"**/demos/**:{fullpath/1}",
"**/tests/**:{fullpath/1}"
],
"filter": [
"!_*",
"!**/_*",
"!**/_*/**"
],
"devPlugins": [
"tarima-lr"
],
"bundleOptions": {
"rollup": {
"bundle": "wasap"
},
"extensions": {
"js": "es6"
}
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/conversabit/wasap.js.git"
},
"license": "MIT",
"homepage": "https://github.com/conversabit/wasap.js#readme",
"devDependencies": {
"buble": "^0.18.0",
"chokidar": "^1.7.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"google-closure-compiler-js": "^20171203.0.0",
"node-sass": "^4.7.2",
"pug": "^2.0.0-rc.4",
"rollup": "^0.52.1",
"tarima": "^3.11.0",
"tarima-lr": "^0.3.2"
}
}