-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
23 lines (23 loc) · 962 Bytes
/
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
{
"name": "foam2",
"version": "2.0.0",
"main": "src/foam.js",
"devDependencies": {
"fake-indexeddb": "^2.1.0",
"istanbul": "^0.4.2",
"jasmine": "^2.4.1",
"jshint": "^2.13.5"
},
"scripts": {
"test": "JASMINE_CONFIG_PATH=jasmine_node.json jasmine",
"testDebug": "JASMINE_CONFIG_PATH=jasmine_node.json node --inspect --debug-brk node_modules/jasmine/bin/jasmine.js",
"testThirdParty": "test/third_party/install.sh && test/third_party/run_tests.sh",
"coverage": "JASMINE_CONFIG_PATH=jasmine_coverage.json istanbul cover -- jasmine \n istanbul instrument ./src/ -o ./tmp_cov___/ \n rm -rf ./tmp_cov___",
"benchmarks": "JASMINE_CONFIG_PATH=jasmine_benchmarks.json jasmine",
"benchmarksDebug": "JASMINE_CONFIG_PATH=jasmine_benchmarks.json node-debug -c node_modules/jasmine/bin/jasmine.js",
"lint": "jshint -c .jshintrc ./src/ && jscs -c .jscsrc ./src/"
},
"dependencies": {
"ace-builds": "^1.4.3"
}
}