-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 KB
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
{
"name": "milo-blocks",
"version": "1.0.0",
"description": "milo-blocks is the core blocks library that is used by the Milo Project",
"keywords": [
"blockly"
],
"repository": {
"type": "git",
"url": "https://github.com/4and4/milo-blocks.git"
},
"bugs": {
"url": "https://github.com/4and4/milo-blocks/issues"
},
"homepage": "https://milo.msrit.net",
"author": {
"name": "Ayush Bihani, Arjun Rao and Authors of Blockly"
},
"main": "./dist/blockly.js",
"scripts": {
"test:lint": "eslint .",
"prepare": "ln -sf $(npm root)/google-closure-library ../closure-library && python buildjs.py && webpack",
"test:setup": "tests/scripts/test_setup.sh",
"test:unit": "node tests/jsunit/test_runner.js",
"test": "npm run test:lint && npm run test:setup && npm run test:unit",
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\""
},
"license": "Apache-2.0",
"private": true,
"jshintConfig": {
"globalstrict": true,
"predef": [
"Blockly",
"goog",
"window",
"document",
"soy",
"XMLHttpRequest"
],
"sub": true,
"undef": true,
"unused": true
},
"devDependencies": {
"install": "^0.8.8",
"dezalgo": "^1.0",
"npm": "^4.4.4",
"google-closure-library": "20170910.0.0",
"webdriverio": "^4.6.2",
"copy-webpack-plugin": "4.0.1",
"eslint": "2.9.0",
"exports-loader": "0.6.3",
"graceful-fs": "4.1.11",
"imports-loader": "0.6.5",
"json": "9.0.4",
"webpack": "1.13.2"
}
}