-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "seven-segment",
"description": "A seven segment display geometry library.",
"version": "4.1.3",
"main": "dist/seven-segment.js",
"typings": "dist/seven-segment.d.ts",
"author": {
"name": "Travis Dillon"
},
"homepage": "https://github.com/tdillon/7#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tdillon/7.git"
},
"bugs": {
"url": "https://github.com/tdillon/7/issues"
},
"keywords": [
"javascript",
"typescript",
"seven segment display"
],
"license": "MIT",
"scripts": {
"postinstall": "typings install",
"test": " phantomjs test/run-jasmine.js test/unit-tests.html",
"clean": "trash dist",
"tsc": "tsc",
"tsc:bundle": "tsc -m system --outFile dist/seven-segment.bundle.js --rootDir ./src -t ES5 src/seven-segment.ts",
"tsc:project": "tsc -p ./",
"build": "npm run clean && npm run tsc:project && npm run tsc:bundle"
},
"devDependencies": {
"jasmine-core": "^2.4.1",
"phantom-jasmine": "^0.3.0",
"systemjs": "^0.19.31",
"trash-cli": "^1.3.0",
"typescript": "^1.8.10",
"typings": "^0.8.1"
}
}