-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "observable-decorators",
"version": "0.0.2",
"description": "Make class properties observable using decorators",
"homepage": "",
"repository": {
"type": "git",
"url": "git://github.com/phillipskevin/observable-decorators.git"
},
"author": {
"name": "Kevin Phillips",
"email": "kphillips86@gmail.com",
"url": ""
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update version number\" && git checkout -b release && git add -f dist/",
"postpublish": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test.html --browsers firefox",
"test": "npm run lint && npm run testee",
"lint": "./node_modules/.bin/eslint **/*.js",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js"
},
"main": "observable-decorators",
"keywords": [
""
],
"steal": {
"babelOptions": {
"plugins": [
"transform-decorators-legacy"
]
},
"main": "observable-decorators",
"npmIgnore": [
"testee",
"steal-tools"
]
},
"dependencies": {
"rxjs": "^5.4.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-promise": "^3.5.0",
"kefir": "^3.7.3",
"steal": "^1.3.1",
"steal-qunit": "^1.0.1",
"steal-tools": "^1.2.0",
"testee": "^0.7.0"
},
"license": "MIT"
}