-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
77 lines (77 loc) · 2.38 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
{
"name": "umbrellajs",
"version": "3.3.3",
"description": "Lightweight javascript library for DOM manipulation and events",
"homepage": "https://umbrellajs.com/",
"repository": "https://github.com/franciscop/umbrella.git",
"funding": "https://www.paypal.me/franciscopresencia/19",
"author": "Francisco Presencia <[email protected]> (https://francisco.io/)",
"license": "MIT",
"scripts": {
"build": "grunt build",
"test": "node --version && grunt test",
"installphantom": "npm run phantomlib && npm run phantominst && npm run phantommove",
"phantomlib": "sudo apt-get update && sudo apt-get install build-essential chrpath libssl-dev libxft-dev libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev",
"phantominst": "cd ~ && export PHANTOM_JS=\"phantomjs-1.9.7-linux-x86_64\" && wget https://bitbucket.org/ariya/phantomjs/downloads/$PHANTOM_JS.tar.bz2 && sudo tar xvjf $PHANTOM_JS.tar.bz2",
"phantommove": "sudo mv $PHANTOM_JS /usr/local/share && sudo ln -sf /usr/local/share/$PHANTOM_JS/bin/phantomjs /usr/local/bin"
},
"keywords": [
"umbrella",
"js",
"selector",
"small",
"tiny",
"jquery",
"alternative"
],
"main": "umbrella.min.js",
"types": "umbrella.d.ts",
"files": [
"src",
"polyfill.js",
"umbrella.js",
"umbrella.esm.js",
"umbrella.d.ts"
],
"devDependencies": {
"grunt": "^1.0.3",
"grunt-bytesize": "^0.2.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-markdown": "^0.7.0",
"grunt-mocha-phantomjs": "^4.0.0",
"grunt-semistandard": "^1.0.6",
"marked": "^0.4.0",
"mocha-phantomjs": "^4.0.2"
},
"semistandard": {
"ignore": [
"umbrella.js",
"polyfill.js",
"**/test.js",
"**/jquery.js",
"**/chai.js",
"**/sinon.js",
"**/mocha.js",
"**/*.min.js",
"umbrella.esm.js"
],
"globals": [
"u",
"parseJson"
]
},
"documentation": {
"name": "Umbrella JS",
"title": "☔ Lightweight javascript library for DOM manipulation and events",
"homepage": "https://umbrellajs.com/",
"menu": {
"Github": "https://github.com/franciscop/umbrella",
"Tests": "https://umbrellajs.com/tests",
"Documentation": "https://docs.umbrellajs.com/"
},
"pages": ["src/"]
}
}