-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 923 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 923 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
{
"name": "testdata",
"version": "0.1.4",
"description": "Testdata intended for use in unit tests, user interface development etc.",
"main": "index.js",
"scripts": {
"test": "npm run test:mocha",
"test:mocha": "NODE_PATH=. mocha -S --compilers js:babel-register --timeout 8000 \"!(node_modules)**/_tests/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/henit/testdata.git"
},
"author": "Henrik Haugberg <henrik.haugberg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/henit/testdata/issues"
},
"homepage": "https://github.com/henit/testdata#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"mocha": "^3.2.0",
"tv4": "^1.3.0"
}
}