-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "spy-object",
"version": "1.0.0",
"description": "Angular X spy object (mock, stub) helper",
"main": "lib",
"typings": "lib/index.d.ts",
"scripts": {
"test": "npm run t",
"clean": "rm -rf lib",
"pretest": "npm run build",
"build": "npm run clean && npm run compile",
"compile": "tsc",
"compile:w": "tsc -w",
"t": "npm run mocha -- src/*.spec.ts",
"test:w": "npm run mocha -- --watch src/*.ts --watch-extensions ts",
"mocha": "ts-node node_modules/mocha/bin/_mocha",
"up": "updtr --test-stdout --save-exact -R simple --test \"npm run t\""
},
"publishConfig": {
"access": "public"
},
"keywords": [
"spy",
"spy-object",
"angularx"
],
"license": "Xnet",
"devDependencies": {
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"mocha": "3.2.0",
"ts-node": "^3.0.2",
"typescript": "^2.2.2"
},
"dependencies": {
"@types/jasmine": "^2.5.47"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/spy-object.git"
},
"bugs": {
"url": "https://github.com/unlight/spy-object/issues"
},
"homepage": "https://github.com/unlight/spy-object#readme"
}