This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
{
"name": "top-model",
"version": "0.1.23",
"description": "Base class providing typed properties, validation and serialization",
"keywords": [
"class",
"model",
"schema",
"object",
"property",
"type",
"validation",
"validator",
"serialization",
"serializer",
"field",
"default",
"obverver",
"observe",
"reactive"
],
"author": "Manuel Vila <[email protected]>",
"license": "MIT",
"promote": true,
"files": [
"lib"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/object-layer/top-model"
},
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"release": "npm run lint && npm run compile && npm test && (git checkout --quiet master && test -z \"$(git status --porcelain)\" && npm version $npm_config_release_type && git push --follow-tags) || echo \"An error occurred (uncommitted changes?)\"",
"release-patch": "npm run release --release-type=patch",
"release-minor": "npm run release --release-type=minor",
"release-major": "npm run release --release-type=major",
"lint": "eslint .",
"test": "mocha --compilers js:babel-polyfill,js:babel-register"
},
"dependencies": {
"better-clone": "^1.0.6",
"event-emitter-mixin": "^0.3.5",
"fn-name": "^2.0.1",
"lodash.isequal": "^4.4.0"
},
"devDependencies": {
"abstract-date": "^0.2.8",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-next": "^0.1.12",
"mocha": "^3.0.2"
}
}