-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
51
{
"name": "test-pantry",
"version": "1.7.1",
"description": "Test Factory library for Javascript testing",
"main": "lib/test-pantry.js",
"files": [
"lib",
"src/test-pantry.js"
],
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"test": "mocha --compilers js:babel-core/register --colors 'src/**/*.spec.js'",
"test:watch": "mocha --compilers js:babel-core/register --colors -w 'src/**/*.spec.js'",
"test:readme": "node ./readme-test-filter.js && erudite --stage 3 README-filtered.md -o README.js && node README.js",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ndp/test-pantry.git"
},
"keywords": [
"testing",
"factory"
],
"author": {
"name": "Andrew J. Peterson",
"email": "andy@ndpsoftware.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ndp/test-pantry/issues"
},
"homepage": "https://github.com/ndp/test-pantry#readme",
"dependencies": {
"seedrandom": "^2.3.6"
},
"devDependencies": {
"babel": "^6.5",
"babel-core": "*",
"babel-eslint": "*",
"babel-loader": "^6.2",
"babel-plugin-add-module-exports": "*",
"babel-preset-es2015": "^6.14",
"chai": "^3.5.0",
"erudite": "^0.5.1",
"eslint": "*",
"eslint-loader": "*",
"mocha": "^3.0.2",
"webpack": "^2.1.0-beta.25"
}
}