This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
52
53
54
{
"name": "value-object",
"version": "0.4.3",
"description": "value-object.js - simple value objects",
"main": "value-object.js",
"scripts": {
"test": "npm run eslint && npm run coverage",
"eslint": "eslint src test",
"mocha": "mocha",
"karma": "karma start --browsers Firefox,Chrome --single-run",
"coverage": "node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- test"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber-ltd/value-object.js.git"
},
"keywords": [
"value",
"object",
"struct"
],
"author": "Cucumber Limited <cukes@googlegroups.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber-ltd/value-object.js/issues"
},
"homepage": "https://github.com/cucumber-ltd/value-object.js#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"benchmark": "^2.1.4",
"browserify": "^16.1.0",
"clone": "^2.1.1",
"es6-error": "^4.1.1",
"eslint": "^5.9.0",
"eslint-config-eslint": "^5.0.1",
"istanbul": "1.0.0-alpha.2",
"karma": "^3.1.1",
"karma-babel-preprocessor": "^8.0.0-beta.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"microtime": "^2.1.7",
"mocha": "^5.2.0",
"prettier": "^1.12.1",
"watchify": "^3.10.0"
},
"files": [
"value-object.js"
]
}