forked from midknight41/examine-instance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "examine-instance",
"version": "1.0.0",
"description": "Inspects an object and its prototype and catalogues the properties and methods.",
"main": "./dist/lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "babel ./src -d dist",
"clean": "./node_modules/.bin/rimraf dist/*",
"pret": "npm run build",
"t": "lab ./dist/test/ -v -S --assert code",
"pretest": "npm run build",
"travis": "npm run test",
"test": "lab ./dist/test/ -v -S --assert code",
"premajor": "npm run test",
"major": "npm version major -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"preminor": "npm run test",
"minor": "npm version minor -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prepatch": "npm run test",
"patch": "npm version patch -m \"published to npm as v%s\" && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midknight41/examine-instance.git"
},
"keywords": [
"reflection"
],
"author": "Chad Macey",
"license": "MIT",
"bugs": {
"url": "https://github.com/midknight41/examine-instance/issues"
},
"homepage": "https://github.com/midknight41/examine-instance#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.22.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-preset-env": "^1.1.8",
"code": "^4.0.0",
"eslint": "^3.15.0",
"lab": "^13.0.2",
"lab-testing": "^2.1.0",
"rimraf": "^2.5.4"
},
"files": [
"dist"
]
}