This repository was archived by the owner on Apr 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "oribella-framework",
"version": "0.10.2",
"description": "Normalizes event flows into an understandable consistent api",
"repository": {
"type": "git",
"url": "https://github.com/oribella/framework"
},
"main": "dist/commonjs/oribella-framework.js",
"typings": "dist/commonjs/oribella-framework.d.ts",
"scripts": {
"lint": "tslint -c tslint.json --project tsconfig.json",
"pretest": "npm run lint",
"test": "nyc mocha --recursive --compilers ts:ts-node/register --require test/setup.ts",
"coverage": "npm run -s test && nyc report --reporter=text-lcov | coveralls",
"clean": "rimraf dist",
"compile": "tsc -p tsconfig.build.json",
"commonjs": "npm run compile -- --module commonjs --outDir dist/commonjs",
"amd": "npm run compile -- --module amd --outDir dist/amd",
"amd-bundled": "npm run compile -- --module amd --outFile dist/oribella-framework.js",
"system": "npm run compile -- --module system --outDir dist/system",
"es2015": "npm run compile -- --module es2015 --outDir dist/es2015 --target es2015",
"build": "npm-run-all -n clean --parallel commonjs amd amd-bundled system es2015",
"typings": "typings install"
},
"author": "Christoffer Åström",
"license": "MIT",
"files": [
"dist",
"src"
],
"jspm": {
"registry": "npm",
"jspmPackage": true,
"main": "index",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"peerDependencies": {
"tslib": "^1.5.0"
},
"dependencies": {
"tslib": "^1.5.0"
}
},
"dependencies": {
"tslib": "^1.5.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/jsdom": "^11.0.1",
"@types/mocha": "^5.0.0",
"@types/node": "^9.3.0",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"jsdom": "^11.1.0",
"mocha": "^5.0.0",
"npm-run-all": "^4.0.1",
"nyc": "^11.0.3",
"rimraf": "^2.5.4",
"sinon": "^5.0.0",
"sinon-chai": "^3.0.0",
"ts-node": "^5.0.0",
"tslint": "^5.5.0",
"typescript": "2.6.2",
"typings": "^2.1.0"
},
"nyc": {
"include": [
"src/*"
],
"extension": [
".ts"
],
"exclude": [
"dist",
"typings"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"sourceMap": true,
"instrument": true
}
}