-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "js.spec-chai",
"version": "0.1.7",
"description": "Chai plugin for js.spec",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"tslint": "node_modules/.bin/tslint -t verbose --project tsconfig.json",
"build": "yarn tslint && tsc",
"test": "mocha --opts mocha.opts",
"test:auto": "./node_modules/.bin/nodemon -e 'ts,js,json' -w test/ -w src/ -x 'yarn run test'",
"build:auto": "./node_modules/.bin/nodemon -i 'dist/' -e 'ts' -x 'yarn run build'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arichiardi/js.spec-chai.git"
},
"bugs": {
"url": "https://github.com/arichiardi/js.spec-chai/issues"
},
"homepage": "https://github.com/arichiardi/js.spec-chai#readme",
"keywords": [
"js.spec",
"clojure.spec",
"specs",
"chai",
"chai-plugin"
],
"directories": {
"lib": "dist"
},
"author": "Andrea Richiardi Elastic Path Software",
"license": "Unlicense",
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"@types/node": "9.4.6",
"chai": "4.1.2",
"js.spec": "1.0.0-23",
"mocha": "5.0.1",
"nodemon": "1.15.1",
"ts-node": "5.0.0",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"peerDependencies": {
"js.spec": ">1.0.0-14"
}
}