-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nod/base",
"version": "1.5.0",
"description": "A configurable base class",
"main": "dist/commonjs/base.js",
"dependencies": {
"@nod/configuration": "^0.1.0",
"@nod/console": "^6.1.0",
"autobind-decorator": "^1.3.3",
"babel-polyfill": "^6.3.14",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-amd": "^6.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.5",
"babel-plugin-transform-es2015-modules-systemjs": "^6.4.0",
"babel-plugin-transform-es2015-modules-umd": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"del": "^2.2.0",
"eslint": "^1.10.3",
"global-object": "^1.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.1",
"gulp-changed": "^1.3.0",
"gulp-debug": "^2.1.2",
"gulp-eslint": "^1.1.1",
"gulp-load-plugins": "^1.2.0",
"gulp-npm-script-sync": "git://github.com/JacopKane/gulp-npm-script-sync.git#patch-2",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"run-sequence": "^1.1.5",
"source-map-support": "^0.4.0",
"vinyl-paths": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nod-studios/base.git"
},
"keywords": [
"base",
"class",
"nod",
"node",
"es6",
"es7"
],
"author": "NOD studios <[email protected]>",
"contributors": [
{
"name": "Furkan Tunalı",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nod-studios/base/issues"
},
"homepage": "https://github.com/nod-studios/base#readme",
"engines": {
"npm": ">=1.5.0"
},
"scripts": {
"start": "node dist/commonjs/instance.js",
"options": "gulp options",
"clean": "gulp clean",
"lint": "gulp lint",
"build-es": "gulp build-es",
"build-commonjs": "gulp build-commonjs",
"build-amd": "gulp build-amd",
"build-umd": "gulp build-umd",
"build-systemjs": "gulp build-systemjs",
"build": "gulp build",
"run-instance": "gulp run-instance",
"watch": "gulp watch",
"preversion": "gulp preversion",
"postpublish": "gulp postpublish",
"postversion": "gulp postversion",
"prepublish": "gulp prepublish",
"test": "gulp test",
"default": "gulp default"
}
}