forked from fabiospampinato/cash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 3.02 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
{
"name": "cash-dom",
"description": "An absurdly small jQuery alternative for modern browsers.",
"version": "8.0.0",
"license": "MIT",
"browser": "./dist/cash.js",
"main": "./dist/cash.js",
"module": "./dist/cash.esm.js",
"jsnext:main": "./dist/cash.esm.js",
"files": [
"dist"
],
"types": "dist/cash.d.ts",
"scripts": {
"clean": "pacco clean",
"build:esm": "pacco build-javascript -e esm",
"build:prod": "pacco build-javascript",
"build:deploy": "npm run build:prod && npm run build:esm",
"build:dev": "pacco build-javascript -e development",
"watch:prod": "pacco watch-javascript",
"watch:dev": "pacco watch-javascript -e development",
"dev": "npm run build:dev && npm run watch:dev",
"prod": "npm run build:prod && npm run watch:prod",
"test": "opn ./test/index.html",
"test:watch": "browser-sync start -s . --files test,dist/cash.js --startPath test --no-notify",
"test:karma": "karma start --single-run",
"test:karma:coverage": "karma start --single-run --generate-coverage && open ./coverage/index.html",
"test:karma:sauce": "karma start --single-run --sauce",
"test:jquery:init": "( git -C ./test/jquery reset --hard HEAD && git -C ./test/jquery pull ) || git clone https://github.com/jquery/jquery.git ./test/jquery",
"test:jquery": "npm run test:jquery:init && npm run test:jquery:build && cd ./test/jquery && npm i && opn http://localhost:4444/test/index.html\\?module=css && php -S localhost:4444",
"test:jquery:build": "cat ./node_modules/jquery/dist/jquery.js ./dist/cash.js ./test/jquery_patch.js > ./test/jquery/dist/jquery.js && cp ./test/jquery/dist/jquery.js ./test/jquery/dist/jquery.min.js",
"test:jquery:build:watch": "while sleep 1; do npm run test:jquery:build; done",
"test:jquery:reverse": "npm run test:jquery:init && npm run test:jquery:reverse:build && npm run test:watch",
"test:jquery:reverse:build": "cat ./node_modules/jquery/dist/jquery.js ./dist/cash.min.js ./test/jquery_reverse_patch.js > ./dist/cash.js",
"test:jquery:reverse:build:watch": "while sleep 1; do npm run test:jquery:reverse:build; done",
"graph": "pacco build-javascript --dependencies-graph --fresh",
"prepublishOnly": "npm run clean && npm run build:deploy && npm run test:karma"
},
"bugs": {
"url": "https://github.com/fabiospampinato/cash/issues"
},
"homepage": "https://github.com/fabiospampinato/cash",
"author": "Ken Wheeler <ken_wheeler@me.com>",
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/cash.git"
},
"dependencies": {},
"devDependencies": {
"browser-sync": "^2.26.3",
"coveralls": "^3.0.9",
"jquery": "^3.3.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.1.0",
"karma-qunit": "^4.0.0",
"karma-sauce-launcher": "^4.0.0",
"karma-spec-reporter": "0.0.32",
"opn-cli": "^3.1.0",
"pacco": "^2.1.4",
"qunit": "^2.7.1",
"qunit-ava-spec": "^1.0.0",
"typescript": "^3.9.3"
}
}