-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "grainjs",
"version": "1.0.2",
"description": "JS library from Grist Labs",
"main": "dist/cjs/index",
"module": "dist/esm/index",
"types": "dist/cjs/index",
"scripts": {
"build": "bash build.sh",
"watch": "tsc -w",
"test": "nyc mocha -R list 'test/lib/*.{js,ts}' && npm run test-types && npm run test-browser-headless",
"test-memory": "mocha -R list --expose-gc --gc-global 'test/lib/*.{js,ts}'",
"test-timing": "TIMING_TESTS=1 mocha -R list 'test/lib/*.{js,ts}'",
"build-demo": "browserify demo/celsius_grain/index.js -d | uglifyjs --source-map 'content=inline,url=build-index.js.map' -o demo/celsius_grain/build-index.js",
"test-manual": "webpack-dev-server --config test/fixtures/webpack.config.js",
"test-browser-headless": "MOCHA_WEBDRIVER_ARGS='--no-sandbox --disable-gpu' MOCHA_WEBDRIVER_HEADLESS=1 mocha 'test/browser/*.{js,ts}'",
"test-browser": "mocha 'test/browser/*.{js,ts}'",
"test-browser-debug": "mocha --bail --no-exit 'test/browser/*.{js,ts}'",
"test-types": "dtslint --localTs node_modules/typescript/lib --expectOnly test/types",
"prepack": "npm run build && npm test"
},
"keywords": [
"grist",
"gristlabs",
"javascript",
"typescript",
"dom",
"observable",
"disposable"
],
"files": [
"dist",
"lib",
"index.ts"
],
"author": "Grist Labs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gristlabs/grainjs.git"
},
"bugs": {
"url": "https://github.com/gristlabs/grainjs/issues"
},
"homepage": "https://github.com/gristlabs/grainjs#readme",
"nyc": {
"reporter": ["html", "text", "lcov"],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
]
},
"publishRelease": {
"owner": "gristlabs",
"repo": "grainjs"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/jsdom": "^16.2.11",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@types/selenium-webdriver": "^4.0.13",
"@types/sinon": "^10.0.2",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chromedriver": "^91.0.0",
"create-react-app": "^4.0.3",
"dtslint": "^4.1.0",
"fastpriorityqueue": "^0.7.1",
"geckodriver": "^2.0.0",
"jsdom": "16.6.0",
"knockout": "^3.5.1",
"lodash": "^4.17.21",
"mocha": "^9.0.0",
"mocha-webdriver": "^0.2.9",
"nyc": "^15.1.0",
"selenium-webdriver": "^4.0.0-beta.4",
"sinon": "^11.1.1",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "~4.3.2",
"typescript-tslint-plugin": "^1.0.1",
"uglify-es": "^3.2.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}