-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "surplus",
"version": "0.5.3",
"description": "High-performance JSX web views for S.js applications",
"keywords": [
"JSX",
"html",
"DOM",
"template"
],
"module": "es/index.js",
"types": "index.d.ts",
"scripts": {
"test": "karma start",
"build": "cp src/compiler/fieldData.ts src/runtime/fieldData.ts && tsc -p src/runtime/tsconfig.json && tsc -p src/compiler/tsconfig.json && rollup -c src/runtime/rollup.config.js && rollup -c src/compiler/rollup.config.js"
},
"author": "Adam Haile",
"homepage": "https://github.com/adamhaile/surplus",
"repository": {
"type": "git",
"url": "https://github.com/adamhaile/surplus.git"
},
"bugs": {
"url": "https://github.com/adamhaile/issues"
},
"license": "MIT",
"peerDependencies": {
"s-js": "^0.4.9"
},
"devDependencies": {
"jasmine": "^3.1.0",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.2",
"karma-safari-launcher": "^1.0.0",
"rollup": "^0.63.4",
"typescript": "^2.9.2"
}
}