-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "demapper",
"version": "1.0.0",
"description": "Class mapper from JS object/JSON based on ES7 decorators",
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "ava 'test/**/*.test.js'",
"test:watch": "npm run test -- --watch",
"lint": "esw src/ test/",
"lint:watch": "npm run lint -- --watch",
"build": "npm run lint && babel src -d lib",
"build:watch": "npm run build -- --watch",
"cover": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"do-publish": "npm run lint && npm run build && npm run cover && npm publish"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/initflow/demapper.git"
},
"keywords": [
"javascript",
"mapper",
"class",
"json",
"decorators"
],
"author": "Initflow <info@initlfow.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/initflow/demapper/issues"
},
"homepage": "https://github.com/initflow/demapper#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.24.0",
"coveralls": "^2.12.0",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"eslint-watch": "^3.1.3",
"nyc": "^10.1.2",
"sinon": "^2.1.0"
},
"dependencies": {},
"ava": {
"babel": "inherit"
}
}