-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.35 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
{
"name": "contextjs",
"version": "2.0.0",
"description": "Context Oriented Programming (COP) for ECMAScript 6",
"main": "lib/contextjs.js",
"directories": {
"test": "tests"
},
"files": [
"lib/"
],
"scripts": {
"compile-es5": "babel -d lib/ src/",
"compile-browser": "browserify lib/contextjs.js --outfile lib/browser-contextjs.js --standalone cop",
"prepublish": "npm run compile-es5 && npm run compile-browser",
"test": "npm run test-node && npm run test-karma",
"test-karma": "karma start --single-run",
"karma": "karma",
"mocha": "mocha --compilers js:babel-core/register",
"test-node": "npm run mocha -- tests/*-test.js",
"benchmark": "npm run mocha -- src/benchmark.spec.js",
"test-chrome-only": "karma start --single-run --browsers Chrome",
"test-continuously": "karma start",
"test-continuously-chrome-only": "karma start --browsers Chrome",
"test-canary": "karma start --browsers ChromeCanary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LivelyKernel/ContextJS.git"
},
"keywords": [
"COP",
"Context",
"Oriented",
"Programming"
],
"author": "HPI Software Architecture Group (https://github.com/LivelyKernel)",
"contributors": [
"Jens Lincke <[email protected]>",
"Stefan Lehmann <[email protected]>",
"Robert Krahn <[email protected]>",
"Jakob Reschke <[email protected]>",
"Marianne Thieffry <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LivelyKernel/ContextJS/issues"
},
"homepage": "https://github.com/LivelyKernel/ContextJS#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.7.7",
"babel-plugin-array-includes": "^2.0.3",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.3",
"karma-commonjs": "^1.0.0",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.2",
"karma-opera-launcher": "^0.3.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7"
},
"dependencies": {}
}