-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
{
"name": "sofe",
"version": "3.0.0",
"description": "Service Oriented Front-end",
"main": "dist/sofe.js",
"scripts": {
"test": "karma start",
"build": "npm run clean && babel src --out-dir lib && node build.js && cp lib/blank.js dist/blank.js && uglifyjs dist/sofe.js --source-map dist/sofe.min.js.map -o dist/sofe.min.js && echo 'Uglified sofe into dist/sofe.min.js'",
"rollup": "rollup src/index.js -f cjs -o dist/sofe.js",
"clean": "rm -rf lib dist",
"prepublish": "npm run build",
"examples": "cd examples/static && npm install && jspm install && cd ../remote && npm install && jspm install && cd ../../ && static -p5554 examples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CanopyTax/sofe.git"
},
"contributors": [
{
"name": "Bret Little",
"email": "[email protected]",
"url": "https://bretlittle.surge.sh"
},
{
"name": "Joel Denning",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CanopyTax/sofe/issues"
},
"homepage": "https://github.com/CanopyTax/sofe#readme",
"devDependencies": {
"babel-cli": "6.3.17",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "^6.3.13",
"isparta": "^4.0.0",
"istanbul": "^0.3.22",
"jasmine-core": "^2.4.1",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "git+https://github.com/douglasduteil/karma-coverage.git#next",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.2",
"node-static": "^0.7.7",
"phantomjs": "^1.9.20",
"rollup": "0.37.0",
"rollup-plugin-commonjs": "6.0.0",
"rollup-plugin-node-resolve": "2.0.0",
"systemjs": "^0.20.12",
"uglify-js": "^2.6.2"
},
"files": [
"dist",
"src"
],
"dependencies": {}
}