-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.25 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.25 KB
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
{
"name": "jsupack",
"version": "1.5.1",
"license": "MIT",
"description": "JavaScript Utilities",
"main": "index.js",
"files": [
"index.js",
"src/"
],
"scripts": {
"test": "echo Testing APIs... && npm run test:_index -s && npm run test:common -s && npm run test:csv_parser -s && npm run test:event -s && npm run test:latex -s && echo APIs tested!",
"test:_index": "mocha ./tests/_index.js",
"test:common": "mocha ./tests/jsu_common.js",
"test:csv_parser": "mocha ./tests/jsu_csv_parser.js",
"test:csv_parser_quick": "mocha ./tests/jsu_csv_parser.js --quick-check",
"test:event": "mocha ./tests/jsu_event.js",
"test:latex": "mocha ./tests/jsu_latex.js",
"browser:gen-tests": "bash ./scripts/build.sh browserify-tests",
"browser:check-tests": "karma start ./.karma.conf.js",
"browser:run-tests": "npm run browser:gen-tests && npm run browser:check-tests",
"code:check-scripts": "echo Testing scripts... && node -e \"console.log('')\" && bash ./scripts/defs.test.sh && node -e \"console.log('')\" && echo Scripts tested!",
"code:check-sources": "bash ./scripts/build.sh validate-sources",
"code:gen-main-test-coverage": "nyc --reporter=lcov --reporter=text npm run test",
"code:check-state": "npm run code:check-scripts && npm run code:check-sources && npm run code:gen-main-test-coverage && npm run browser:run-tests",
"clean": "rm -rf .nyc_output coverage tests_browserified"
},
"repository": {
"type": "git",
"url": "https://github.com/arlogy/jsu.git"
},
"keywords": [
"client-side",
"server-side",
"ecmascript",
"es2009",
"es2011",
"es5",
"es5.1",
"javascript",
"js",
"utility",
"jsutils",
"jsu",
"csv",
"csv parser",
"rfc 4180"
],
"author": "https://github.com/arlogy",
"bugs": {
"url": "https://github.com/arlogy/jsu/issues"
},
"homepage": "https://github.com/arlogy/jsu#readme",
"devDependencies": {
"browser-or-node": "^2.0.0",
"browserify": "^17.0.0",
"jsdom": "^20.0.0",
"jshint": "^2.13.5",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sinon": "^14.0.0"
}
}