forked from franciscop/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "umbrellajs",
"version": "2.6.4",
"homepage": "http://umbrellajs.com/",
"authors": [
"Francisco Presencia <[email protected]>"
],
"description": "Lightweight and intuitive javascript library",
"main": "umbrella.min.js",
"keywords": [
"umbrella",
"js",
"selector",
"ajax",
"small",
"tiny",
"jquery",
"alternative"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/umbrellajs/umbrella/issues"
},
"scripts": {
"test": "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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umbrellajs/umbrella.git"
},
"devDependencies": {
"body-parser": "^1.15.1",
"express": "^4.13.4",
"grunt": "^0.4.5",
"grunt-bytesize": "^0.1.1",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jade": "^0.15.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-markdown": "^0.7.0",
"grunt-mocha-phantomjs": "^2.0.1",
"grunt-semistandard": "^1.0.6",
"marked": "^0.3.5",
"mocha-phantomjs": "^4.0.2",
"phantomjs": "^1.9.8"
},
"semistandard": {
"ignore": [
"umbrella.js",
"polyfill.js",
"**/test.js",
"**/jquery.js",
"**/chai.js",
"**/sinon.js",
"**/mocha.js",
"**/*.min.js"
],
"globals": [
"u",
"ajax",
"parseJson"
]
}
}