-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 899 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 899 Bytes
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
{
"name": "stahlwerk",
"version": "0.2.0",
"description": "A minimal factory library.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha src/{*,**/*,**/**/*,**/**/**/*}.spec.js --recursive --require babel-register --reporter spec",
"prepublish": "babel src/ --out-dir lib/ --ignore *.spec.js"
},
"author": "Thomas Mayrhofer",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/webPapaya/stahlwerk.git"
},
"keywords": [
"TDD",
"BDD",
"Factories",
"Testing",
"Factory Girl",
"Mocha",
"Jest",
"AVA"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint-config-crewmeister": "latest",
"hamjest": "^3.1.0",
"hamjest-spy": "^4.0.0",
"mocha": "^4.0.1"
}
}