-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "tw-analytics",
"version": "0.1.0",
"description": "Add Google analytics to a Twine game from the command line or a script.",
"main": "index.js",
"bin": {
"twga": "./bin/bin.js"
},
"files": [
"bin/**/*",
"lib/**/*",
"index.js"
],
"dependencies": {
"fs-jetpack": "^2.2.2",
"yargs": "^13.2.4"
},
"devDependencies": {
"coveralls": "^3.0.5",
"istanbul": "^0.4.5",
"jshint": "^2.10.2",
"mocha": "^6.2.0",
"uglify-js": "^3.6.0"
},
"scripts": {
"test": "mocha ./test/test.js",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/test.js",
"lint": "jshint dice.js"
},
"keywords": [
"twine",
"twee"
],
"author": "Chapel",
"license": "Unlicense",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChapelR/tw-analytics.git"
},
"bugs": {
"url": "https://github.com/ChapelR/tw-analytics/issues"
},
"homepage": "https://github.com/ChapelR/tw-analytics#readme"
}