propagate-cli 1.9.2 → 1.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/bin/action/listForcedDependencyRelations.js +4 -7
  2. package/package.json +3 -3
  3. package/test/Development/.propagaterc +0 -11
  4. package/test/Development/argumentative/package.json +0 -27
  5. package/test/Development/boring/package.json +0 -22
  6. package/test/Development/concur-algorithm/package.json +0 -44
  7. package/test/Development/concurrent-layer-protocol/package.json +0 -38
  8. package/test/Development/easy/package.json +0 -27
  9. package/test/Development/easy-draganddrop/package.json +0 -36
  10. package/test/Development/easy-layout/package.json +0 -29
  11. package/test/Development/easy-richtextarea/package.json +0 -30
  12. package/test/Development/fragmented/package.json +0 -31
  13. package/test/Development/inference/package.json +0 -45
  14. package/test/Development/juxtapose/package.json +0 -35
  15. package/test/Development/necessary/package.json +0 -26
  16. package/test/Development/occam-browser/package.json +0 -13
  17. package/test/Development/occam-client/package.json +0 -53
  18. package/test/Development/occam-colours/package.json +0 -11
  19. package/test/Development/occam-custom-grammars/package.json +0 -41
  20. package/test/Development/occam-desktop/package.json +0 -21
  21. package/test/Development/occam-directed-graphs/package.json +0 -34
  22. package/test/Development/occam-documents/package.json +0 -27
  23. package/test/Development/occam-dom/package.json +0 -40
  24. package/test/Development/occam-editor/package.json +0 -44
  25. package/test/Development/occam-file-system/package.json +0 -33
  26. package/test/Development/occam-grammar-utilities/package.json +0 -41
  27. package/test/Development/occam-kahn/package.json +0 -30
  28. package/test/Development/occam-lazy/package.json +0 -44
  29. package/test/Development/occam-lexers/package.json +0 -38
  30. package/test/Development/occam-open-cli/package.json +0 -40
  31. package/test/Development/occam-parsers/package.json +0 -39
  32. package/test/Development/occam-pearce-kelly/package.json +0 -31
  33. package/test/Development/occam-pretty/package.json +0 -43
  34. package/test/Development/occam-tarjan/package.json +0 -30
  35. package/test/Development/occam-verifier/package.json +0 -23
  36. package/test/Development/propagate-cli/package.json +0 -21
  37. package/test/Development/reaction/package.json +0 -33
  38. package/test/Development/reaction-with-style/package.json +0 -30
  39. package/test/Development/sufficient/package.json +0 -29
  40. package/test/Development/with-style/package.json +0 -45
  41. package/test/Development/xgl/package.json +0 -38
  42. package/test/Development/xgl-server/package.json +0 -32
  43. package/test/Public/aleph-one.com/package.json +0 -30
  44. package/test/Public/djalbat.com/package.json +0 -6
  45. package/test/Public/juxtapose.info/package.json +0 -36
  46. package/test/Public/occam.science/package.json +0 -40
  47. package/test/Public/openmathematics.org/package.json +0 -47
  48. package/test/Public/schoonercecilie.org/package.json +0 -30
  49. package/test/Public/weconcurjohn.com/package.json +0 -8
@@ -13,16 +13,13 @@ function listForcedDependencyRelations() {
13
13
  if (forcedDependencyRelationsLength === 0) {
14
14
  console.log(NO_FORCED_DEPENDENCY_RELATIONS_MESSAGE);
15
15
  } else {
16
- const forcedDependencyRelationsNames = [
17
- ...forcedDependencyRelations
18
- ];
19
-
20
16
  console.log(EMPTY_STRING);
21
17
 
22
- forcedDependencyRelationsNames.forEach((forcedDependencyRelationsName, index) => {
23
- const forcedDependencyRelationsNumber = index + 1; ///
18
+ forcedDependencyRelations.forEach((forcedDependencyRelations, index) => {
19
+ const { dependent, dependency } = forcedDependencyRelations,
20
+ forcedDependencyRelationsNumber = index + 1; ///
24
21
 
25
- console.log(` ${forcedDependencyRelationsNumber}: "${forcedDependencyRelationsName}"`);
22
+ console.log(` ${forcedDependencyRelationsNumber}: "${dependent}" -> "${dependency}"`);
26
23
 
27
24
  forcedDependencyRelationsNumbers.push(forcedDependencyRelationsNumber);
28
25
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "propagate-cli",
3
3
  "author": "James Smith",
4
- "version": "1.9.2",
4
+ "version": "1.9.6",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/propagate-cli",
7
7
  "description": "Propagate updated packages throughout a project.",
@@ -14,8 +14,8 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "argumentative": "^2.0.15",
17
- "necessary": "^8.0.3",
18
- "occam-directed-graphs": "^3.0.11"
17
+ "necessary": "^10.0.0",
18
+ "occam-directed-graphs": "^3.0.17"
19
19
  },
20
20
  "devDependencies": {},
21
21
  "scripts": {}
@@ -1,11 +0,0 @@
1
- {
2
- "version": "1.8",
3
- "directories": [
4
- "../Public"
5
- ],
6
- "shellCommands": {
7
- "git": "echo 'git!' ",
8
- "build": "echo 'build!' ",
9
- "publish": "echo 'publish!' "
10
- }
11
- }
@@ -1,27 +0,0 @@
1
- {
2
- "name": "argumentative",
3
- "author": "James Smith",
4
- "version": "1.1.1",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/argumentative",
7
- "description": "Parses the argv array.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/argumentative"
11
- },
12
- "dependencies": {},
13
- "devDependencies": {
14
- "babel-cli": "^6.24.1",
15
- "babel-preset-es2015": "^6.6.0",
16
- "chokidar-cli": "^1.2.0"
17
- },
18
- "scripts": {
19
- "clean": "rm -rf ./lib",
20
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
21
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
22
- "build": "npm run clean && npm run babel",
23
- "build-debug": "npm run clean && npm run babel-debug",
24
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
25
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
26
- }
27
- }
@@ -1,22 +0,0 @@
1
- {
2
- "author": "James Smith",
3
- "version": "1.0.19",
4
- "license": "MIT, Anti-996",
5
- "homepage": "https://github.com/djalbat/boring",
6
- "description": "A handful of common CSS styles.",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/djalbat/boring"
10
- },
11
- "dependencies": {},
12
- "devDependencies": {
13
- "node-sass": "^4.5.0",
14
- "chokidar-cli": "^1.2.0"
15
- },
16
- "scripts": {
17
- "build": "node-sass ./boring.scss > ./boring.css",
18
- "watch": "npm run build && chokidar './boring.scss' -c 'npm run build'",
19
- "build-debug": "node-sass --source-map true ./boring.scss > ./boring.css",
20
- "watch-debug": "npm run build-debug && chokidar './boring.scss' -c 'npm run build-debug'"
21
- }
22
- }
@@ -1,44 +0,0 @@
1
- {
2
- "name": "concur-algorithm",
3
- "author": "James Smith",
4
- "version": "1.0.3",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/jecs-imperial/concur-algorithm",
7
- "description": "An implementation of the Concur algorithm.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/jecs-imperial/concur-algorithm"
11
- },
12
- "dependencies": {},
13
- "devDependencies": {
14
- "body-parser": "^1.18.2",
15
- "express": "^4.16.4",
16
- "babel-cli": "^6.18.0",
17
- "babel-plugin-transform-react-jsx": "^6.7.5",
18
- "babel-preset-es2015": "^6.18.0",
19
- "babel-preset-react": "^6.5.0",
20
- "browserify": "^14.1.0",
21
- "chai": "^4.1.0",
22
- "chokidar-cli": "^1.2.0",
23
- "easy": "^8.2.19",
24
- "juxtapose": "^1.0.91",
25
- "mocha": "~2.2.5",
26
- "necessary": "^3.2.2",
27
- "random-seed": "~0.2.0",
28
- "sufficient": "^1.1.12",
29
- "uuid": "^3.3.2"
30
- },
31
- "scripts": {
32
- "clean": "rm -rf ./lib",
33
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
34
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
35
- "browserify": "browserify ./lib/example.js > ./public/lib/example.js",
36
- "browserify-debug": "browserify ./lib/example.js --debug > ./public/lib/example.js",
37
- "build": "npm run clean && npm run babel && npm run browserify",
38
- "build-debug": "npm run clean && npm run babel-debug && npm run browserify-debug",
39
- "watch": "npm run build && chokidar 'index.js' './es6/**/*.js' -c 'npm run build'",
40
- "watch-debug": "npm run build-debug && chokidar 'index.js' './es6/**/*.js' -c 'npm run build-debug'",
41
- "start": "node ./bin/example.js",
42
- "test": "mocha --recursive -R spec ./test"
43
- }
44
- }
@@ -1,38 +0,0 @@
1
- {
2
- "name": "@jecs-imperial/concurrent-layer-protocol",
3
- "version": "0.0.115",
4
- "dependencies": {
5
- "concur-algorithm": "^1.0.0",
6
- "easy-richtextarea": "^1.1.87",
7
- "hashids": "~1.0.2",
8
- "necessary": "^3.3.1",
9
- "random-seed": "~0.2.0",
10
- "sufficient": "^1.0.16",
11
- "uuid": "^3.0.1"
12
- },
13
- "devDependencies": {
14
- "babel-cli": "^6.18.0",
15
- "babel-plugin-transform-react-jsx": "^6.7.5",
16
- "babel-preset-es2015": "^6.18.0",
17
- "babel-preset-react": "^6.5.0",
18
- "body-parser": "^1.18.3",
19
- "browserify": "^14.1.0",
20
- "chai": "^4.1.0",
21
- "chokidar-cli": "^1.2.0",
22
- "express": "^4.16.4",
23
- "juxtapose": "^1.0.92",
24
- "mocha": "^6.0.2"
25
- },
26
- "scripts": {
27
- "clean": "rm -rf ./lib",
28
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
29
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
30
- "browserify": "browserify ./lib/example.js > ./public/lib/example.js",
31
- "browserify-debug": "browserify ./lib/example.js --debug > ./public/lib/example.js",
32
- "build": "npm run clean && npm run babel && npm run browserify",
33
- "build-debug": "npm run clean && npm run babel-debug && npm run browserify-debug",
34
- "watch": "npm run build && chokidar 'index.js' './es6/**/*.js' -c 'npm run build'",
35
- "watch-debug": "npm run build-debug && chokidar 'index.js' './es6/**/*.js' -c 'npm run build-debug'",
36
- "test": "mocha --recursive -R spec ./test"
37
- }
38
- }
@@ -1,27 +0,0 @@
1
- {
2
- "name": "easy",
3
- "author": "James Smith",
4
- "version": "8.2.46",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/easy",
7
- "description": "Elements that abstract away from the DOM.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/easy"
11
- },
12
- "dependencies": {},
13
- "devDependencies": {
14
- "babel-cli": "^6.24.1",
15
- "babel-preset-es2015": "^6.6.0",
16
- "chokidar-cli": "^1.2.0"
17
- },
18
- "scripts": {
19
- "clean": "rm -rf ./lib",
20
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
21
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
22
- "build": "npm run clean && npm run babel",
23
- "build-debug": "npm run clean && npm run babel-debug",
24
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
25
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
26
- }
27
- }
@@ -1,36 +0,0 @@
1
- {
2
- "name": "easy-draganddrop",
3
- "author": "James Smith",
4
- "version": "8.0.160",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/easy-draganddrop",
7
- "description": "Drag and drop elements including a file explorer and a rubbish bin.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/easy-draganddrop"
11
- },
12
- "dependencies": {
13
- "easy": "^8.2.43",
14
- "necessary": "^1.7.5"
15
- },
16
- "devDependencies": {
17
- "babel": "^6.5.2",
18
- "babel-cli": "^6.7.5",
19
- "babel-plugin-transform-react-jsx": "^6.7.5",
20
- "babel-preset-es2015": "^6.6.0",
21
- "babel-preset-react": "^6.5.0",
22
- "browserify": "^13.3.0",
23
- "chokidar-cli": "^1.2.0"
24
- },
25
- "scripts": {
26
- "clean": "rm -rf ./lib",
27
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
28
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
29
- "browserify": "browserify ./lib/example.js > ./example.js",
30
- "browserify-debug": "browserify ./lib/example.js --debug > ./example.js",
31
- "build": "npm run clean && npm run babel && npm run browserify",
32
- "build-debug": "npm run clean && npm run babel-debug && npm run browserify-debug",
33
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
34
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
35
- }
36
- }
@@ -1,29 +0,0 @@
1
- {
2
- "name": "easy-layout",
3
- "author": "James Smith",
4
- "version": "2.2.10",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/easy-layout",
7
- "description": "Layout elements that work with CSS flexbox.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/easy-layout"
11
- },
12
- "dependencies": {
13
- "easy": "^8.2.43"
14
- },
15
- "devDependencies": {
16
- "babel-cli": "^6.24.1",
17
- "babel-preset-es2015": "^6.6.0",
18
- "chokidar-cli": "^1.2.0"
19
- },
20
- "scripts": {
21
- "clean": "rm -rf ./lib",
22
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
23
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
24
- "build": "npm run clean && npm run babel",
25
- "build-debug": "npm run clean && npm run babel-debug",
26
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
27
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
28
- }
29
- }
@@ -1,30 +0,0 @@
1
- {
2
- "name": "easy-richtextarea",
3
- "author": "James Smith",
4
- "version": "1.1.88",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/easy-richtextarea",
7
- "description": "A textarea element that handles and hands off events well.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/easy-richtextarea"
11
- },
12
- "dependencies": {
13
- "easy": "^8.2.43",
14
- "setimmediate": "^1.0.5"
15
- },
16
- "devDependencies": {
17
- "babel-cli": "^6.7.5",
18
- "babel-preset-es2015": "^6.6.0",
19
- "chokidar-cli": "^1.2.0"
20
- },
21
- "scripts": {
22
- "clean": "rm -rf ./lib",
23
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
24
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
25
- "build": "npm run clean && npm run babel",
26
- "build-debug": "npm run clean && npm run babel-debug",
27
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
28
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
29
- }
30
- }
@@ -1,31 +0,0 @@
1
- {
2
- "name": "fragmented",
3
- "author": "James Smith",
4
- "version": "2.0.11",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/fragmented",
7
- "description": "Relates to URL hash fragments.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/fragmented"
11
- },
12
- "dependencies": {},
13
- "devDependencies": {
14
- "babel": "^6.5.2",
15
- "babel-cli": "^6.7.5",
16
- "babel-preset-es2015": "^6.6.0",
17
- "browserify": "^13.0.0",
18
- "chokidar-cli": "^1.2.0"
19
- },
20
- "scripts": {
21
- "clean": "rm -rf ./lib",
22
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
23
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
24
- "browserify:example": "browserify ./es6/example.js --standalone example > ./example.js",
25
- "browserify:example-debug": "browserify ./es6/example.js --standalone example --debug > ./example.js",
26
- "build": "npm run clean && npm run babel && npm run browserify:example",
27
- "build-debug": "npm run clean && npm run babel-debug && npm run browserify:example-debug",
28
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
29
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
30
- }
31
- }
@@ -1,45 +0,0 @@
1
- {
2
- "name": "inference",
3
- "author": "James Smith",
4
- "version": "1.0.53",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/inference",
7
- "description": "A dispatcher in a similar vein to Redux.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/inference"
11
- },
12
- "dependencies": {},
13
- "devDependencies": {
14
- "babel": "^6.5.2",
15
- "babel-cli": "^6.7.5",
16
- "babel-plugin-transform-react-jsx": "^6.7.5",
17
- "babel-preset-es2015": "^6.6.0",
18
- "babel-preset-react": "^6.5.0",
19
- "browserify": "^13.0.0",
20
- "chokidar-cli": "^1.2.0",
21
- "concurrently": "^3.3.0",
22
- "necessary": "^1.4.2",
23
- "node-sass": "^4.5.0",
24
- "reaction": "^2.2.7"
25
- },
26
- "scripts": {
27
- "clean": "rm -rf ./lib",
28
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
29
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
30
- "browserify": "browserify ./lib/examples.js --standalone examples > ./examples.js",
31
- "browserify-debug": "browserify ./lib/examples.js --standalone examples --debug > ./examples.js",
32
- "build-js": "npm run clean && npm run babel && npm run browserify",
33
- "build-js-debug": "npm run clean && npm run babel-debug && npm run browserify-debug",
34
- "watch-js": "npm run build-js && chokidar './index.js' './es6/**/*.js' -c 'npm run build-js'",
35
- "watch-js-debug": "npm run build-js-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-js-debug'",
36
- "build-sass": "node-sass ./examples/*.scss -o ./examples",
37
- "build-sass-debug": "node-sass --source-map true ./examples/*.scss -o ./examples",
38
- "watch-sass": "npm run build-sass && chokidar './examples/*.scss' -c 'npm run build-sass'",
39
- "watch-sass-debug": "npm run build-sass-debug && chokidar './examples/*.scss' -c 'npm run build-sass-debug'",
40
- "build": "concurrently --kill-others 'npm run build-js' 'npm run build-sass'",
41
- "build-debug": "concurrently 'npm run build-js-debug' 'npm run build-sass-debug'",
42
- "watch": "concurrently 'npm run watch-js' 'npm run watch-sass'",
43
- "watch-debug": "concurrently 'npm run watch-js-debug' 'npm run watch-sass-debug'"
44
- }
45
- }
@@ -1,35 +0,0 @@
1
- {
2
- "name": "juxtapose",
3
- "author": "James Smith",
4
- "version": "1.0.99",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/juxtapose",
7
- "description": "JSX support for Easy elements.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/juxtapose"
11
- },
12
- "dependencies": {
13
- "easy": "^8.2.43"
14
- },
15
- "devDependencies": {
16
- "babel": "^6.5.2",
17
- "babel-cli": "^6.7.5",
18
- "babel-plugin-transform-react-jsx": "^6.7.5",
19
- "babel-preset-es2015": "^6.6.0",
20
- "babel-preset-react": "^6.5.0",
21
- "browserify": "^13.0.0",
22
- "chokidar-cli": "^1.2.0"
23
- },
24
- "scripts": {
25
- "clean": "rm -rf ./lib",
26
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
27
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
28
- "browserify": "browserify ./lib/examples.js --standalone examples > ./examples.js",
29
- "browserify-debug": "browserify ./lib/examples.js --standalone examples --debug > ./examples.js",
30
- "build": "npm run clean && npm run babel && npm run browserify",
31
- "build-debug": "npm run clean && npm run babel-debug && npm run browserify-debug",
32
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
33
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
34
- }
35
- }
@@ -1,26 +0,0 @@
1
- {
2
- "name": "necessary",
3
- "author": "James Smith",
4
- "version": "3.5.1",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/djalbat/necessary",
7
- "description": "A collection of utility functions.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/djalbat/necessary"
11
- },
12
- "dependencies": {},
13
- "devDependencies": {
14
- "babel-cli": "^6.24.1",
15
- "babel-preset-es2015": "^6.6.0"
16
- },
17
- "scripts": {
18
- "clean": "rm -rf ./lib",
19
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
20
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
21
- "build": "npm run clean && npm run babel",
22
- "build-debug": "npm run clean && npm run babel-debug",
23
- "watch": "npm run build && chokidar './index.js' './es6/**/*.js' -c 'npm run build'",
24
- "watch-debug": "npm run build-debug && chokidar './index.js' './es6/**/*.js' -c 'npm run build-debug'"
25
- }
26
- }
@@ -1,13 +0,0 @@
1
- {
2
- "version": "2.4.3",
3
- "dependencies": {
4
- "body-parser": "^1.19.0",
5
- "express": "^4.16.4",
6
- "necessary": "^3.4.0",
7
- "occam-file-system": "^2.0.58"
8
- },
9
- "devDependencies": {},
10
- "scripts": {
11
- "start": "node ./bin/main.js"
12
- }
13
- }
@@ -1,53 +0,0 @@
1
- {
2
- "dependencies": {},
3
- "devDependencies": {
4
- "@jecs-imperial/concurrent-layer-protocol": "0.0.114",
5
- "@jecs-imperial/occam-documents": "0.0.204",
6
- "@jecs-imperial/occam-editor": "0.0.368",
7
- "babel": "^6.5.2",
8
- "babel-cli": "^6.26.0",
9
- "babel-plugin-transform-react-jsx": "^6.7.5",
10
- "babel-preset-es2015": "^6.6.0",
11
- "babel-preset-react": "^6.5.0",
12
- "browserify": "^13.0.0",
13
- "chokidar-cli": "^1.2.0",
14
- "concurrently": "^4.1.0",
15
- "easy": "^8.2.45",
16
- "easy-draganddrop": "^8.0.159",
17
- "easy-layout": "^2.2.7",
18
- "juxtapose": "^1.0.96",
19
- "necessary": "^3.2.9",
20
- "node-sass": "^4.11.0",
21
- "occam-custom-grammars": "^3.0.46",
22
- "occam-directed-graphs": "^1.2.0",
23
- "occam-dom": "^1.2.44",
24
- "occam-open-cli": "^2.0.73",
25
- "setimmediate": "^1.0.5",
26
- "sufficient": "^1.0.20",
27
- "uglify-js": "^3.3.17"
28
- },
29
- "scripts": {
30
- "clean": "rm -rf ./tmp",
31
- "copy": "npm run copy-js && npm run copy-css && npm run copy-template",
32
- "copy-js": "cp ./public/lib/client.js ../occam-desktop/public/lib; cp ./public/lib/client.js ../occam-browser/public/lib",
33
- "copy-css": "rm -rf ../occam-desktop/public/css; rm -rf ../occam-browser/public/css; cp -r ./public/css ../occam-desktop/public; cp -r ./public/css ../occam-browser/public",
34
- "copy-template": "rm -rf ../occam-desktop/template; rm -rf ../occam-browser/template; cp -r ./template ../occam-desktop; cp -r ./template ../occam-browser",
35
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./tmp",
36
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./tmp",
37
- "browserify": "browserify ./tmp/client.js > ./public/lib/client.js",
38
- "browserify-debug": "browserify ./tmp/client.js --debug > ./public/lib/client.js",
39
- "uglify": "uglifyjs --comments --mangle --mangle-toplevel --compress --output ./public/lib/client.js -- ./public/lib/client.js",
40
- "build-js": "npm run babel && npm run browserify && npm run uglify && npm run copy-js",
41
- "build-js-debug": "npm run babel-debug && npm run browserify-debug && npm run copy-js",
42
- "watch-js": "npm run build && chokidar './es6/**/*.js' -c 'npm run build'",
43
- "watch-js-debug": "npm run build-debug && chokidar './es6/**/*.js' -c 'npm run build-debug'",
44
- "build-sass": "node-sass ./scss/client.scss -o ./public/css && npm run copy-css",
45
- "build-sass-debug": "node-sass --source-map true ./scss/client.scss -o ./public/css && npm run copy-css",
46
- "watch-sass": "npm run build-sass && chokidar './scss/**/*.scss' -c 'npm run build-sass'",
47
- "watch-sass-debug": "npm run build-sass-debug && chokidar './scss/**/*.scss' -c 'npm run build-sass-debug'",
48
- "build": "npm run clean && npm run build-js && npm run build-sass && npm run clean",
49
- "build-debug": "npm run clean && npm run build-js-debug && npm run build-sass-debug && npm run clean",
50
- "watch": "concurrently 'npm run watch-js' 'npm run watch-sass'",
51
- "watch-debug": "concurrently 'npm run watch-js-debug' 'npm run watch-sass-debug'"
52
- }
53
- }
@@ -1,11 +0,0 @@
1
- {
2
- "author": "James Smith",
3
- "version": "1.0.25",
4
- "license": "MIT, Anti-996",
5
- "homepage": "https://github.com/jecs-imperial/occam-colours",
6
- "description": "Occam's colour definitions and schemes.",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/jecs-imperial/occam-colours"
10
- }
11
- }
@@ -1,41 +0,0 @@
1
- {
2
- "name": "occam-custom-grammars",
3
- "author": "James Smith",
4
- "version": "3.0.47",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/jecs-imperial/occam-custom-grammars",
7
- "description": "Occam's custom grammars.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/jecs-imperial/occam-custom-grammars"
11
- },
12
- "dependencies": {
13
- "necessary": "^3.4.0",
14
- "occam-grammar-utilities": "^3.0.46",
15
- "occam-lexers": "^10.1.70",
16
- "occam-parsers": "^10.1.61"
17
- },
18
- "devDependencies": {
19
- "babel": "^6.5.2",
20
- "babel-cli": "^6.24.1",
21
- "babel-plugin-transform-react-jsx": "^6.7.5",
22
- "babel-preset-es2015": "^6.24.1",
23
- "babel-preset-react": "^6.5.0",
24
- "browserify": "^13.0.0",
25
- "chokidar-cli": "^1.2.0",
26
- "easy": "^7.10.0",
27
- "easy-layout": "^2.1.46",
28
- "juxtapose": "^1.0.89"
29
- },
30
- "scripts": {
31
- "clean": "rm -rf ./lib",
32
- "babel": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --out-dir=./lib",
33
- "babel-debug": "babel ./es6 --presets=es2015,react --plugins transform-react-jsx --source-maps inline --out-dir=./lib",
34
- "browserify": "browserify ./lib/example.js > ./example.js",
35
- "browserify-debug": "browserify ./lib/example.js --debug > ./example.js",
36
- "build": "npm run clean && npm run babel && npm run browserify",
37
- "build-debug": "npm run clean && npm run babel-debug && npm run browserify-debug",
38
- "watch": "npm run build && chokidar 'index.js' './es6/**/*.js' -c 'npm run build'",
39
- "watch-debug": "npm run build-debug && chokidar 'index.js' './es6/**/*.js' -c 'npm run build-debug'"
40
- }
41
- }
@@ -1,21 +0,0 @@
1
- {
2
- "version": "2.4.2",
3
- "license": "Apache-2.0",
4
- "main": "./bin/main.js",
5
- "productName": "Occam",
6
- "dependencies": {
7
- "electron-window-state": "^5.0.3",
8
- "necessary": "^3.4.0",
9
- "occam-file-system": "^2.0.58",
10
- "request": "^2.88.0"
11
- },
12
- "devDependencies": {
13
- "electron": "^4.1.4",
14
- "electron-packager": "^13.1.1"
15
- },
16
- "scripts": {
17
- "pre-pack": "node ./pre-pack.js",
18
- "package": "electron-packager . --overwrite --icon=./icon/logo_simple.icns",
19
- "make": "npm run pre-pack && npm run package"
20
- }
21
- }
@@ -1,34 +0,0 @@
1
- {
2
- "name": "occam-directed-graphs",
3
- "author": "James Smith",
4
- "version": "1.2.3",
5
- "license": "MIT, Anti-996",
6
- "homepage": "https://github.com/jecs-imperial/occam-directed-graphs",
7
- "description": "Directed graphs comprised of directed acyclic graphs together with cycles.",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/jecs-imperial/occam-directed-graphs"
11
- },
12
- "dependencies": {
13
- "necessary": "^3.2.13",
14
- "occam-kahn": "^2.0.54",
15
- "occam-pearce-kelly": "^2.7.3"
16
- },
17
- "devDependencies": {
18
- "chai": "~2.2.0",
19
- "babel": "^6.5.2",
20
- "babel-cli": "^6.7.5",
21
- "babel-preset-es2015": "^6.6.0",
22
- "chokidar-cli": "^1.2.0",
23
- "mocha": "~2.2.5"
24
- },
25
- "scripts": {
26
- "clean": "rm -rf ./lib",
27
- "babel": "babel ./es6 --presets=es2015 --out-dir=./lib",
28
- "babel-debug": "babel ./es6 --presets=es2015 --source-maps inline --out-dir=./lib",
29
- "build": "npm run clean && npm run babel",
30
- "build-debug": "npm run clean && npm run babel-debug",
31
- "watch": "npm run build && chokidar 'index.js' './es6/**/*.js' -c 'npm run build'",
32
- "watch-debug": "npm run build-debug && chokidar 'index.js' './es6/**/*.js' -c 'npm run build-debug'"
33
- }
34
- }