-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "homespring.js",
"version": "1.0.0",
"description": "A JS Homespring interpreter",
"main": "lib/homespring.js",
"devDependencies": {
"jasmine-core": "~3.7",
"jquery": "^3.6.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "~2.0",
"karma-jasmine": "^4.0.2",
"karma-story-reporter": "^0.3.1",
"puppeteer": "~9.1.1",
"uglify-js": "^3.17.4"
},
"repository": {
"type": "git",
"url": "git://github.com/iamcal/homespring.js.git"
},
"keywords": [
"homespring",
"salmon",
"rivers",
"esolang"
],
"author": "Cal Henderson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamcal/homespring.js/issues"
},
"homepage": "https://github.com/iamcal/homespring.js",
"scripts": {
"uglify": "echo \"/* $(npm -s run env echo '$npm_package_name') $(date +%Y-%m-%d) */\" > lib/homespring.min.js; ./node_modules/.bin/uglifyjs -c -m -- lib/homespring.js >> lib/homespring.min.js",
"test": "./node_modules/.bin/karma start karma.conf.js --single-run --log-level error",
"coverage": "./node_modules/.bin/karma start karma-cover.conf.js --single-run --log-level disable",
"build": "npm run uglify && npm run test && npm run coverage"
}
}