forked from adamhaile/S
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 991 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "s-js",
"version": "0.4.9",
"description": "S.js - simple, clean, fast reactive programming in Javascript",
"main": "dist/S.js",
"module": "dist/es/S.js",
"types": "dist/es/S.d.ts",
"dependencies": {},
"devDependencies": {
"jasmine": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"rollup": "^1.16.2",
"typescript": "^3.5.2"
},
"scripts": {
"build": "tsc && rollup dist/es/S.js -f \"umd\" -n \"S\" -o dist/S.js && rollup dist/es/withsubclocks.js -f \"umd\" -n \"S\" -o dist/withsubclocks.js",
"test": "jasmine",
"bench": "node --allow-natives-syntax bench/bench.js"
},
"keywords": [
"reactive",
"javascript",
"synchronous",
"signal",
"dependency"
],
"repository": {
"type": "git",
"url": "https://github.com/adamhaile/S.git"
},
"bugs": {
"url": "https://github.com/adamhaile/S/issues"
},
"author": "Adam Haile",
"license": "MIT"
}