-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.57 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
59
60
61
{
"name": "lantern-core",
"version": "1.1.1",
"description": "A framework for building javascript single page applications.",
"main": "dist/lantern-core.js",
"module": "dist/lantern-core.mjs",
"jsnext:main": "dist/lantern-core.mjs",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test"
},
"repository": "thebrubaker/lantern-core",
"keywords": [
"es6",
"modules",
"rollup",
"bundle",
"browser"
],
"author": "Joel Brubaker",
"license": "MIT",
"bugs": {
"url": "https://github.com/thebrubaker/lantern-core/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/thebrubaker/lantern-core#readme",
"dependencies": {
"bottlejs": "^1.6.0",
"lantern-blueprint": "^1.2.0"
},
"devDependencies": {
"axios": "^0.16.1",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"chai": "^3.5.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-watch": "^2.5.0",
"sinon": "^2.1.0"
}
}