-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "jsmoo",
"version": "0.18.3",
"description": "JavaScript Minimalist Object Orientation",
"main": "lib/index.js",
"scripts": {
"watch": "watch 'npm run lint && npm run test' src/ test/ -d",
"test": "mocha",
"lint": "eslint src/ test/",
"build": "babel src -d lib",
"prerelease": "npm run lint && npm run test && npm run build",
"publishMajor": "npm run prerelease && npm version majori -m \"Bump to version %s\" && git push && npm publish",
"publishMinor": "npm run prerelease && npm version minor -m \"Bump to version %s\" && git push && npm publish",
"publishPatch": "npm run prerelease && npm version patch -m \"Bump to version %s\" && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XescuGC/jsmoo.git"
},
"files": [
"lib/",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"oo",
"object",
"orientation",
"moo"
],
"author": "xescugc <[email protected]>",
"license": [
{
"type": "MIT",
"url": "https://github.com/XescuGC/jsmoo/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/XescuGC/jsmoo/issues"
},
"homepage": "https://github.com/XescuGC/jsmoo#readme",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-plugin-es6-promise": "^1.0.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"es6-promise": "^4.0.5",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"mocha": "^2.4.5",
"watch": "^0.17.1"
}
}