This repository was archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
80 lines (80 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
{
"name": "jqapi",
"version": "3.0.0",
"description": "Alternative jQuery Documentaion Browser",
"main": "index.js",
"scripts": {
"clean": "rm -rf www && mkdir www",
"copy:html": "cp src/*.html www",
"copy:assets": "cp -r src/assets www/assets",
"copy": "npm run copy:html & npm run copy:assets",
"build:js": "browserify -e src/index.js > www/build.js",
"build:js:prod": "browserify -e src/index.js | uglifyjs -c warnings=false -m > www/build.js",
"build:css": "stylus -u autoprefixer-stylus --include-css --include src < src/index.styl > www/build.css",
"build:css:prod": "stylus -u autoprefixer-stylus --include-css --include src < src/index.styl | csso > www/build.css",
"build": "npm run build:js & npm run build:css",
"build:prod": "npm run build:js:prod & npm run build:css:prod",
"watch:js": "watchify src/index.js -v -o www/build.js",
"watch:css": "chokidar src/**/*.styl -c 'npm run build:css'",
"watch": "npm run watch:js & npm run watch:css",
"serve": "browser-sync start --serveStatic www --files www/build.*",
"update": "node tasks/update.js",
"update:daemon": "node tasks/update.js --daemon",
"test:lib": "mocha test/lib/**/*_spec.js",
"test:frontend": "karma start karma.conf.js",
"test:frontend:once": "karma start karma.conf.js --single-run",
"test": "npm run test:lib && npm run test:frontend:once",
"start": "npm run copy & npm run serve & npm run watch",
"production": "npm run clean && npm run copy && npm run build:prod && npm run update",
"lint": "standard"
},
"browserify": {
"transform": [
"babelify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mustardamus/jqapi.git"
},
"keywords": [
"jquery",
"documentation",
"browser",
"docs"
],
"author": "Sebastian Senf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mustardamus/jqapi/issues"
},
"homepage": "https://github.com/mustardamus/jqapi#readme",
"devDependencies": {
"autoprefixer-stylus": "^0.11.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.2",
"browserify": "^13.1.1",
"chokidar-cli": "^1.2.0",
"csso": "^2.3.0",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"standard": "^8.6.0",
"stylus": "^0.54.5",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"cheerio": "^0.22.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"jquery": "^3.1.1",
"lodash": "^4.17.2",
"shelljs": "^0.7.5"
}
}