-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.77 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
{
"name": "rpsls",
"version": "0.9.0",
"description": "The canonical rock-paper-scissors-lizard-spock library.",
"main": "dist/cjs/rpsls.js",
"jsnext:main": "dist/rpsls.js",
"typings": "dist/rpsls.d.ts",
"scripts": {
"karma": "node_modules/.bin/karma",
"tsc": "node_modules/.bin/tsc",
"typings": "node_modules/.bin/typings install",
"clean": "rm -rf dist/ coverage/",
"compile": "npm run tsc -- -p ./ && npm run tsc -- -p ./ -m commonjs -outDir dist/cjs && npm run tsc -- -p ./ -m umd -outDir dist/umd && npm run tsc -- -p ./ -m amd -outDir dist/amd && npm run tsc -- -p ./ -m system -outDir dist/system",
"build": "npm run clean && npm run compile",
"test": "karma start karma.conf.js --single-run",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/coverage-final.json -o coverage -t html",
"test:coveralls": "node_modules/.bin/remap-istanbul -i coverage/coverage-final.json -t text-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdillon/rpsls.git"
},
"keywords": [
"typescript",
"javascript",
"rock",
"paper",
"scissors",
"lizard",
"spock"
],
"author": "Travis Dillon",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/tdillon/rpsls/issues"
},
"homepage": "https://github.com/tdillon/rpsls#readme",
"devDependencies": {
"coveralls": "^2.11.12",
"istanbul": "^0.4.4",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"remap-istanbul": "^0.6.4",
"typescript": "^1.8.10",
"typings": "^1.3.2"
}
}