-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.07 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": "smw",
"version": "0.0.1",
"description": "Strict Mode for the Web / Show Me Why",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "webpack --config ./config/webpack.dev.config.es6.js",
"coverage": "karma start ./config/karma.coverage.conf.js",
"coverage_node": "JASMINE_CONFIG_PATH=./config/jasmine_coverage.json istanbul cover --dir .coverage -- jasmine",
"develop": "webpack --watch --progress --config ./config/webpack.dev.config.es6.js",
"develop_test": "karma start ./config/karma.dev.conf.js",
"integration": "karma start ./config/karma.integration.conf.js",
"integration_node": "JASMINE_CONFIG_PATH=./config/jasmine_integration.json jasmine",
"lint": "webpack --config ./config/webpack.strict.config.es6.js",
"test": "karma start ./config/karma.all.conf.js",
"test_node": "JASMINE_CONFIG_PATH=./config/jasmine_all.json jasmine",
"unit": "karma start ./config/karma.unit.conf.js",
"unit_node": "JASMINE_CONFIG_PATH=./config/jasmine_unit.json jasmine"
},
"keywords": [
"javascript",
"strict",
"tools",
"development",
"lively"
],
"author": "Mark Dittmer",
"license": "Apache-2.0",
"dependencies": {
"foam2-experimental": "git://github.com/foam-framework/foam2-experimental.git#consumable",
"web-apis-investigator": "git://github.com/mdittmer/web-apis.git"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.11.1",
"eslint-config-google": "^0.7.1",
"eslint-loader": "^1.6.1",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^1.2.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^1.8.1",
"lodash": "^4.17.2",
"webpack": "^1.13.3"
},
"eslintConfig": {
"extends": "google"
}
}