-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1016 Bytes
/
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
{
"name": "speclight",
"version": "1.0.0",
"description": "speclight is a simple JavaScript BDD framework for Jasmine",
"main": "lib/speclight.js",
"typings": "lib/speclight.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/node": "^8.0.53",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.2.1",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"typescript": "^2.6.2"
},
"scripts": {
"build": "tsc --outDir lib --declaration \"./src/speclight.ts\"",
"example": "jasmine-ts --config=jasmine.json \"examples/example.ts\"",
"prepublish": "rimraf ./lib && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robfe/speclight.js.git"
},
"author": "Rob Fonseca-Ensor",
"license": "MIT",
"bugs": {
"url": "https://github.com/robfe/speclight.js/issues"
},
"homepage": "https://github.com/robfe/speclight.js#readme",
"peerDependencies": {
"jasmine": "2.x"
}
}