-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "bracket-template",
"version": "1.1.5",
"description": "Javascript templates",
"repository": {
"type": "git",
"url": "https://github.com/danlevan/bracket.git"
},
"main": "./dist/node.js",
"scripts": {
"test": "eslint ./src/**/* ./tools/**/* ./tests/**/* && babel-node ./tests/run.js --source-maps && babel-node ./tests/runBrowser.js --source-maps",
"test-node": "babel-node ./tests/run.js --source-maps",
"test-browser": "babel-node ./tests/runBrowser.js --source-maps",
"lint": "eslint ./src/**/* ./tools/**/* ./tests/**/*",
"start": "node examples/node/simple",
"build": "babel-node ./scripts/build.js --source-maps",
"prepublish": "babel-node ./scripts/build.js"
},
"keywords": [
"template",
"javascript",
"node",
"frontend",
"backend"
],
"author": "Dan Le Van",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"express": "^4.14.0",
"jasmine": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"webpack": "^1.13.3"
},
"dependencies": {
"js-yaml": "^3.7.0"
}
}