-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "dcl",
"version": "2.0.11",
"description": "Elegant minimalistic implementation of OOP with mixins + AOP.",
"author": "Eugene Lazutkin <[email protected]> (http://lazutkin.com/)",
"license": "BSD-3-Clause",
"homepage": "http://www.dcljs.org",
"bugs": "http://github.com/uhop/dcl/issues",
"main": "dcl.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"heya-globalize": "^1.2.1",
"heya-unit": "^0.3.0",
"puppeteer": "^3.0.1"
},
"scripts": {
"test": "node tests/tests.js",
"test-browser": "node tests/puppeteer.js",
"dist": "node node_modules/heya-globalize/index.js && node node_modules/heya-globalize/index.js --es6 --target=es6 && node node_modules/heya-globalize/index.js --amd --target=amd",
"prepublishOnly": "npm run dist"
},
"github": "http://github.com/uhop/dcl",
"repository": {
"type": "git",
"url": "git://github.com/uhop/dcl.git"
},
"keywords": [
"object-oriented",
"programming",
"aspect-oriented",
"OOP",
"AOP",
"OO"
],
"browserGlobals": {
"!root": "dcl",
"./dcl": "dcl",
"./advise": "advise",
"./debug": "!dcl"
}
}