forked from markasoftware/SpecDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "amd-specs",
"version": "0.0.0",
"description": "An AMD equivalent for Intel's ARK",
"scripts": {
"test": "tape tests/*.js | tap-spec",
"build": "bash build/build.bash",
"create-cpu": "node build/create-cpu.js",
"create-gpu": "node build/create-gpu.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markasoftware/amd-specs.git"
},
"dependencies": {
"babel-cli": "^6",
"babel-plugin-array-includes": "^2",
"babel-preset-es2015": "^6",
"browserify": "^14",
"csso-cli": "*",
"js-yaml": "^3",
"mithril": "^1",
"tap-spec": "*",
"tape": "^4",
"uglify-js": "^2"
},
"author": "Mark Polyakov",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/markasoftware/amd-specs/issues"
},
"homepage": "https://github.com/markasoftware/amd-specs",
"babel": {
"presets": [
[
"es2015",
{
"modules": false,
"loose": true
}
]
],
"plugins": [
"array-includes"
]
}
}