-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "simpl.js",
"version": "0.1.10",
"description": "JavaScript library for S.IM.PL. (Support for Information Mapping between Programming Languages). Provides de/serialization for complex object graphs with cyclic references.",
"main": "build/simpl.js",
"types": "build/simpl.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc && webpack --mode development",
"build": "tsc && webpack --mode production",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecologylab/simpl.js.git"
},
"keywords": [
"serialization",
"mapping",
"cross-platform",
"cross-language"
],
"author": "Interface Ecology Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecologylab/simpl.js/issues"
},
"homepage": "https://github.com/ecologylab/simpl.js#readme",
"devDependencies": {
"source-map-loader": "^0.2.3",
"typescript": "^2.8.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}