forked from BoxFactura/pulltorefresh.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.4 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
{
"name": "pulltorefreshjs",
"version": "0.1.9",
"description": "Pull To Refresh",
"main": "dist/pulltorefresh.js",
"scripts": {
"dev": "tarima -des",
"lint": "eslint src",
"build_full": "tarima -Ufqe dist -x tests",
"build_min": "npm run build_full -- -OR '**/*.js:{basedir}/{name}.min.js'",
"build": "npm run build_full && npm run build_min",
"pretest": "npm run lint",
"test": "testem ci",
"dev_test": "testem"
},
"author": "Rafael Soto",
"license": "MIT",
"tarima": {
"src": "src",
"public": ".",
"dest": ".",
"rename": [
"**/*.js:dist/{fullpath/1}",
"**/demos/**:{fullpath/1}",
"**/tests/**:{fullpath/1}"
],
"bundle": [
"**/*.js"
],
"filter": [
"!_*",
"!**/_*",
"!**/_*/**"
],
"ignoreFiles": [
".gitignore"
],
"devPlugins": [
"tarima-lr"
],
"bundleOptions": {
"extensions": {
"js": "es6"
},
"rollup": {
"bundle": "PullToRefresh"
}
}
},
"devDependencies": {
"buble": "^0.18.0",
"chokidar": "^1.6.0",
"csso": "^3.1.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"google-closure-compiler-js": "^20171203.0.0",
"less": "^2.7.1",
"pug": "^2.0.0-beta6",
"rollup": "^0.52.1",
"tarima": "^3.11.0",
"tarima-lr": "^0.3.2"
}
}