This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
109 lines (109 loc) · 2.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"title": "Prelodr",
"name": "prelodr",
"version": "2.1.1",
"description": "A simple Material preloader inspired by Google Inbox",
"keywords": [
"preloader",
"minimal",
"responsive",
"ui",
"material-design"
],
"license": "MIT",
"repository": "joseluisq/prelodr",
"author": {
"name": "José Luis Quintana",
"url": "http://git.io/joseluisq"
},
"main": "dist/prelodr.js",
"dependencies": {
"emitus": "^2.0.3",
"seqr": "^1.0.7"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"clean-css-cli": "^4.1.6",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jsdom": "^11.0.0",
"node-sass": "^4.5.3",
"nyc": "^11.0.3",
"object-assign": "^4.1.1",
"rollup": "^0.43.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"engines": {
"node": ">= 4.0"
},
"scripts": {
"version": "npm run build",
"build": "npm run clean && npm run js && npm run css",
"js": "npm run js:min && npm run js:unmin",
"js:min": "cross-env NODE_ENV=minified rollup -c",
"js:unmin": "cross-env NODE_ENV=unminified rollup -c",
"css": "node-sass index.scss dist/prelodr.css && cleancss dist/prelodr.css -do dist/prelodr.min.css",
"lint": "eslint index.js",
"clean": "rm -rf .nyc_output && rm -rf coverage && rm -rf dist",
"test": "npm run clean && npm run lint && npm run test:ava",
"test:ava": "cross-env NODE_ENV=testing nyc ava --verbose",
"test:watch": "ava --verbose --watch",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"env": {
"testing": {
"presets": [
"es2015",
"stage-0"
],
"ignore": "test.js",
"sourceMaps": "inline"
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard"
]
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"require": [
"babel-core/register"
]
},
"nyc": {
"require": [
"babel-register"
],
"checkCoverage": true,
"reporter": [
"text",
"lcov"
]
}
}