-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.61 KB
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
{
"name": "@epiphanysoft/oo",
"version": "1.0.0-alpha.0",
"description": "Configurable classes",
"author": "Don Griffin (dongryphon)",
"license": "MIT",
"homepage": "https://github.com/EpiphanySoft/oo#readme",
"main": "index.js",
"bugs": {
"url": "https://github.com/EpiphanySoft/oo/issues"
},
"dependencies": {
"@epiphanysoft/watchable": "^1.1.0"
},
"devDependencies": {
"assertly": "^1.0.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"coveralls": "^3.0.0",
"mocha": "^3.5.3",
"nyc": "^11.3.0"
},
"directories": {
"bin": "./bin",
"doc": "./doc",
"lib": "./lib",
"man": "./man"
},
"keywords": [
"oo",
"oop",
"class",
"config",
"configurable"
],
"repository": {
"type": "git",
"url": "https://github.com/EpiphanySoft/oo.git"
},
"scripts": {
"debug": "devtool node_modules/mocha/bin/_mocha -qc -- ./test/specs/**/*.js",
"test": "nyc mocha --compilers js:babel-core/register --require babel-polyfill ./test/specs/**/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}